Skip to content

Commit 9d82cae

Browse files
Fix BufferedStart reference in chasm scheduler proto (#8197)
## What changed? _Describe what has changed in this PR._ ## Why? _Tell your future self why have you made these changes._ ## How did you test it? - [ ] built - [ ] run locally and tested manually - [ ] covered by existing tests - [ ] added new unit test(s) - [ ] added new functional test(s) ## Potential risks _Any change is risky. Identify all risks you are aware of. If none, remove this section._
1 parent 41cce70 commit 9d82cae

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

chasm/lib/scheduler/proto/v1/message.proto

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ option go_package = "go.temporal.io/server/chasm/lib/scheduler/gen/schedulerpb;s
66

77
import "temporal/api/common/v1/message.proto";
88
import "temporal/api/schedule/v1/message.proto";
9+
import "temporal/server/api/schedule/v1/message.proto";
910

1011
import "google/protobuf/timestamp.proto";
1112

@@ -35,7 +36,7 @@ message GeneratorInternal {
3536
// CHASM scheduler's Invoker internal state.
3637
message InvokerInternal {
3738
// Buffered starts that will be started by the Invoker.
38-
repeated BufferedStart buffered_starts = 2;
39+
repeated temporal.server.api.schedule.v1.BufferedStart buffered_starts = 2;
3940

4041
// Workflow executions that will be cancelled due to overlap policy.
4142
repeated temporal.api.common.v1.WorkflowExecution cancel_workflows = 3;

0 commit comments

Comments
 (0)