@workflow/world-testing 4.1.0-beta.60 → 4.1.0-beta.61
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -49909,7 +49909,7 @@ function workflowEntrypoint(workflowCode2) {
|
|
|
49909
49909
|
});
|
|
49910
49910
|
}
|
|
49911
49911
|
catch (err) {
|
|
49912
|
-
if (WorkflowAPIError.is(err) && err.status === 409) {
|
|
49912
|
+
if (WorkflowAPIError.is(err) && (err.status === 409 || err.status === 410)) {
|
|
49913
49913
|
runtimeLogger.warn("Tried completing workflow run, but run has already finished.", {
|
|
49914
49914
|
workflowRunId: runId,
|
|
49915
49915
|
message: err.message
|
|
@@ -49995,7 +49995,7 @@ function workflowEntrypoint(workflowCode2) {
|
|
|
49995
49995
|
});
|
|
49996
49996
|
}
|
|
49997
49997
|
catch (err2) {
|
|
49998
|
-
if (WorkflowAPIError.is(err2) && err2.status === 409) {
|
|
49998
|
+
if (WorkflowAPIError.is(err2) && (err2.status === 409 || err2.status === 410)) {
|
|
49999
49999
|
runtimeLogger.warn("Tried failing workflow run, but run has already finished.", {
|
|
50000
50000
|
workflowRunId: runId,
|
|
50001
50001
|
message: err2.message
|
|
@@ -50263,7 +50263,7 @@ function getWritable(options = {}) {
|
|
|
50263
50263
|
__name(getWritable, "getWritable");
|
|
50264
50264
|
|
|
50265
50265
|
// ../workflow/dist/stdlib.js
|
|
50266
|
-
var fetch = globalThis[Symbol.for("WORKFLOW_USE_STEP")]("step//workflow@4.1.0-beta.
|
|
50266
|
+
var fetch = globalThis[Symbol.for("WORKFLOW_USE_STEP")]("step//workflow@4.1.0-beta.60//fetch");
|
|
50267
50267
|
|
|
50268
50268
|
// ../../node_modules/.pnpm/zod@4.1.11/node_modules/zod/v4/core/core.js
|
|
50269
50269
|
var NEVER = Object.freeze({
|