aboutsummaryrefslogtreecommitdiff
path: root/src/zencompute/functionrunner.h
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2026-02-27 12:05:41 +0100
committerStefan Boberg <[email protected]>2026-02-27 12:05:41 +0100
commitebdc8c19da54756a0969e2b2c624f2eae3ea8aff (patch)
treee4e2d06ee7f3f2dc989af0642877ed0c6c028876 /src/zencompute/functionrunner.h
parentFunctionServiceSession::Impl::SubmitActions now uses the batching LocalProces... (diff)
downloadzen-ebdc8c19da54756a0969e2b2c624f2eae3ea8aff.tar.xz
zen-ebdc8c19da54756a0969e2b2c624f2eae3ea8aff.zip
made local action submits more async by introducing "submitting" state
Diffstat (limited to 'src/zencompute/functionrunner.h')
-rw-r--r--src/zencompute/functionrunner.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/zencompute/functionrunner.h b/src/zencompute/functionrunner.h
index b7ad58d32..cd26be412 100644
--- a/src/zencompute/functionrunner.h
+++ b/src/zencompute/functionrunner.h
@@ -118,6 +118,7 @@ struct RunnerAction : public RefCounted
{
New,
Pending,
+ Submitting,
Running,
Completed,
Failed,
@@ -132,6 +133,8 @@ struct RunnerAction : public RefCounted
return "New";
case State::Pending:
return "Pending";
+ case State::Submitting:
+ return "Submitting";
case State::Running:
return "Running";
case State::Completed: