Edits history of script submission #5948 for ' exists worker with tag (windmill)'

  • nativets
    One script reply has been approved by the moderators
    Ap­pro­ved
    /**
     * exists worker with tag
     *
     */
    export async function main(tag: string | undefined) {
      const url = new URL(`${BASE_URL}/api/workers/exists_worker_with_tag`);
      for (const [k, v] of [["tag", tag]]) {
        if (v !== undefined && v !== "") {
          url.searchParams.append(k, v);
        }
      }
      const response = await fetch(url, {
        method: "GET",
        headers: {
          Authorization: "Bearer " + WM_TOKEN,
        },
        body: undefined,
      });
      if (!response.ok) {
        const text = await response.text();
        throw new Error(`${response.status} ${text}`);
      }
      return await response.json();
    }
    

    Submitted by hugo697 370 days ago

  • nativets
    /**
     * exists worker with tag
     *
     */
    export async function main(tag: string | undefined) {
      const url = new URL(`${BASE_URL}/api/workers/exists_worker_with_tag`);
      for (const [k, v] of [["tag", tag]]) {
        if (v !== undefined && v !== "") {
          url.searchParams.append(k, v);
        }
      }
      const response = await fetch(url, {
        method: "GET",
        headers: {
          Authorization: "Bearer " + WM_TOKEN,
        },
        body: undefined,
      });
      if (!response.ok) {
        const text = await response.text();
        throw new Error(`${response.status} ${text}`);
      }
      return await response.json();
    }
    

    Submitted by hugo697 797 days ago