From 9cde73b7760da1e417ad26cad7c9fb456a55111d Mon Sep 17 00:00:00 2001 From: Andrew Baranec Date: Mon, 6 Jan 2025 23:45:19 -0500 Subject: [PATCH] Fix proto doc --- .../src/main/proto/deephaven_core/proto/console.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proto/proto-backplane-grpc/src/main/proto/deephaven_core/proto/console.proto b/proto/proto-backplane-grpc/src/main/proto/deephaven_core/proto/console.proto index ad12c6d66bc..6303f8f9c3c 100644 --- a/proto/proto-backplane-grpc/src/main/proto/deephaven_core/proto/console.proto +++ b/proto/proto-backplane-grpc/src/main/proto/deephaven_core/proto/console.proto @@ -112,9 +112,9 @@ message ExecuteCommandRequest { reserved 2;//if script sessions get a ticket, we will use this reserved tag string code = 3; - // If set to `true` the command will be executed systemically. Failures in systemic code + // If set to `EXECUTE_SYSTEMIC` the command will be executed systemically. Failures in systemic code // are treated as important failures and cause the server to shut down. - // If this is unset it is treated as `false` + // If this is unset it is treated as `EXECUTE_NOT_SYSTEMIC` optional SystemicType systemic = 4; }