Skip to content

Commit

Permalink
Update temporal submodule for branch main
Browse files Browse the repository at this point in the history
  • Loading branch information
temporal-data committed Jun 20, 2024
1 parent 78f1c85 commit d7c4985
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion temporal
Submodule temporal updated 51 files
+1 −0 api/enums/v1/replication.go-helpers.pb.go
+32 −24 api/enums/v1/replication.pb.go
+1 −0 api/enums/v1/task.go-helpers.pb.go
+21 −13 api/enums/v1/task.pb.go
+37 −0 api/replication/v1/message.go-helpers.pb.go
+578 −438 api/replication/v1/message.pb.go
+4 −0 common/log/tag/values.go
+2 −0 common/metrics/metric_defs.go
+35 −0 common/persistence/serialization/task_serializer.go
+32 −10 common/persistence/serialization/task_serializer_test.go
+7 −1 components/callbacks/statemachine.go
+7 −0 components/dummy/statemachine.go
+13 −2 components/nexusoperations/statemachine.go
+7 −0 components/scheduler/statemachine.go
+1 −0 proto/internal/temporal/server/api/enums/v1/replication.proto
+2 −0 proto/internal/temporal/server/api/enums/v1/task.proto
+11 −0 proto/internal/temporal/server/api/replication/v1/message.proto
+1 −1 service/history/api/getworkflowexecutionrawhistoryv2/api.go
+15 −2 service/history/history_engine.go
+15 −0 service/history/hsm/hsmtest/sm.go
+64 −1 service/history/hsm/tree.go
+110 −0 service/history/hsm/tree_test.go
+29 −25 service/history/ndc/activity_state_replicator.go
+21 −31 service/history/ndc/activity_state_replicator_test.go
+1 −0 service/history/ndc/history_importer.go
+2 −1 service/history/ndc/history_replicator.go
+276 −0 service/history/ndc/hsm_state_replicator.go
+74 −0 service/history/ndc/hsm_state_replicator_mock.go
+557 −0 service/history/ndc/hsm_state_replicator_test.go
+1 −1 service/history/ndc/transaction_manager.go
+19 −2 service/history/ndc/workflow_state_replicator.go
+80 −0 service/history/ndc/workflow_state_replicator_test.go
+21 −2 service/history/replication/ack_manager.go
+10 −2 service/history/replication/dlq_handler.go
+241 −0 service/history/replication/executable_sync_hsm_task.go
+319 −0 service/history/replication/executable_sync_hsm_task_test.go
+9 −0 service/history/replication/executable_task_converter.go
+39 −0 service/history/replication/raw_task_converter.go
+121 −0 service/history/replication/raw_task_converter_test.go
+17 −16 service/history/replication/task_executor.go
+25 −0 service/history/replication/task_executor_test.go
+17 −0 service/history/replication/task_processor.go
+42 −0 service/history/replication/task_processor_test.go
+5 −1 service/history/shard/context_testutil.go
+13 −3 service/history/shard/engine.go
+120 −106 service/history/shard/engine_mock.go
+68 −0 service/history/tasks/sync_hsm_task.go
+5 −0 service/history/workflow/mutable_state.go
+39 −0 service/history/workflow/mutable_state_impl.go
+98 −1 service/history/workflow/mutable_state_impl_test.go
+7 −1 service/history/workflow/task_generator.go

0 comments on commit d7c4985

Please sign in to comment.