Skip to content

Commit

Permalink
update core
Browse files Browse the repository at this point in the history
  • Loading branch information
twin-drill committed Aug 26, 2024
1 parent e969558 commit 87853e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion temporalio/bridge/sdk-core
Submodule sdk-core updated 54 files
+7 −1 .github/workflows/per-pr.yml
+1 −1 Cargo.toml
+2 −2 client/Cargo.toml
+2 −2 client/src/metrics.rs
+1 −0 core-api/src/telemetry.rs
+4 −5 core/Cargo.toml
+2 −3 core/src/abstractions.rs
+1 −1 core/src/core_tests/activity_tasks.rs
+2 −2 core/src/core_tests/local_activities.rs
+8 −9 core/src/core_tests/queries.rs
+2 −2 core/src/core_tests/updates.rs
+3 −3 core/src/core_tests/workflow_cancels.rs
+42 −41 core/src/core_tests/workflow_tasks.rs
+5 −3 core/src/ephemeral_server/mod.rs
+3 −0 core/src/protosext/mod.rs
+0 −8 core/src/telemetry/mod.rs
+7 −3 core/src/telemetry/otel.rs
+11 −0 core/src/worker/activities/activity_task_poller_stream.rs
+4 −3 core/src/worker/slot_provider.rs
+1 −1 core/src/worker/tuner/resource_based.rs
+28 −2 core/src/worker/workflow/driven_workflow.rs
+2 −2 core/src/worker/workflow/history_update.rs
+5 −5 core/src/worker/workflow/machines/activity_state_machine.rs
+1 −1 core/src/worker/workflow/machines/cancel_external_state_machine.rs
+1 −1 core/src/worker/workflow/machines/cancel_workflow_state_machine.rs
+7 −7 core/src/worker/workflow/machines/child_workflow_state_machine.rs
+3 −3 core/src/worker/workflow/machines/local_activity_state_machine.rs
+1 −1 core/src/worker/workflow/machines/mod.rs
+3 −2 core/src/worker/workflow/machines/patch_state_machine.rs
+1 −1 core/src/worker/workflow/machines/signal_external_state_machine.rs
+4 −4 core/src/worker/workflow/machines/update_state_machine.rs
+19 −18 core/src/worker/workflow/machines/workflow_machines.rs
+2 −2 core/src/worker/workflow/machines/workflow_task_state_machine.rs
+18 −4 core/src/worker/workflow/managed_run.rs
+20 −15 core/src/worker/workflow/mod.rs
+2 −2 core/src/worker/workflow/workflow_stream.rs
+4 −4 docker/docker-compose-telem.yaml
+12 −9 etc/otel-collector-config.yaml
+2 −2 fsm/rustfsm_procmacro/src/lib.rs
+5 −5 sdk-core-protos/protos/local/temporal/sdk/core/workflow_activation/workflow_activation.proto
+38 −7 sdk-core-protos/src/lib.rs
+3 −3 sdk/src/lib.rs
+15 −2 sdk/src/workflow_context.rs
+21 −6 sdk/src/workflow_future.rs
+4 −3 test-utils/src/lib.rs
+49 −4 tests/integ_tests/metrics_tests.rs
+94 −62 tests/integ_tests/queries_tests.rs
+16 −9 tests/integ_tests/update_tests.rs
+1 −1 tests/integ_tests/visibility_tests.rs
+1 −1 tests/integ_tests/workflow_tests.rs
+139 −4 tests/integ_tests/workflow_tests/resets.rs
+43 −28 tests/integ_tests/workflow_tests/upsert_search_attrs.rs
+28 −19 tests/main.rs
+7 −2 tests/runner.rs

0 comments on commit 87853e1

Please sign in to comment.