File tree
4 files changed
+140
-4
lines changed- packages
- client/src
- core-bridge
- test/src
4 files changed
+140
-4
lines changedOriginal file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
307 | 307 |
| |
308 | 308 |
| |
309 | 309 |
| |
| 310 | + | |
| 311 | + | |
| 312 | + | |
| 313 | + | |
| 314 | + | |
| 315 | + | |
310 | 316 |
| |
311 | 317 |
| |
312 | 318 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
142 | 142 |
| |
143 | 143 |
| |
144 | 144 |
| |
145 |
| - | |
| 145 | + | |
146 | 146 |
| |
147 | 147 |
| |
148 | 148 |
| |
|
- .github/workflows/per-pr.yml-28
- Cargo.toml+1-2
- client/Cargo.toml+1-1
- client/src/lib.rs+2-2
- client/src/metrics.rs+2-7
- client/src/raw.rs-14
- core-api/Cargo.toml+1-1
- core-api/src/telemetry.rs+3-37
- core-api/src/telemetry/metrics.rs-26
- core-api/src/worker.rs-2
- core/Cargo.toml+4-4
- core/src/abstractions.rs+1-1
- core/src/core_tests/activity_tasks.rs+16-66
- core/src/core_tests/child_workflows.rs+8-65
- core/src/core_tests/local_activities.rs+16-6
- core/src/core_tests/queries.rs+68-68
- core/src/core_tests/workers.rs+6-2
- core/src/core_tests/workflow_tasks.rs+24-53
- core/src/ephemeral_server/mod.rs+1-1
- core/src/telemetry/log_export.rs+1-1
- core/src/telemetry/metrics.rs+21-32
- core/src/telemetry/mod.rs+1-8
- core/src/telemetry/otel.rs+136-103
- core/src/telemetry/prometheus_server.rs+3
- core/src/test_help/mod.rs+1-2
- core/src/worker/mod.rs+4-12
- core/src/worker/workflow/driven_workflow.rs+2-7
- core/src/worker/workflow/machines/activity_state_machine.rs+8-3
- core/src/worker/workflow/machines/cancel_external_state_machine.rs+7-2
- core/src/worker/workflow/machines/cancel_workflow_state_machine.rs+10-2
- core/src/worker/workflow/machines/child_workflow_state_machine.rs+10-2
- core/src/worker/workflow/machines/complete_workflow_state_machine.rs+25-12
- core/src/worker/workflow/machines/continue_as_new_workflow_state_machine.rs+7-2
- core/src/worker/workflow/machines/fail_workflow_state_machine.rs+9-4
- core/src/worker/workflow/machines/local_activity_state_machine.rs+39
- core/src/worker/workflow/machines/mod.rs+2-1
- core/src/worker/workflow/machines/modify_workflow_properties_state_machine.rs+11-6
- core/src/worker/workflow/machines/patch_state_machine.rs+15-9
- core/src/worker/workflow/machines/signal_external_state_machine.rs+7-3
- core/src/worker/workflow/machines/timer_state_machine.rs+16-11
- core/src/worker/workflow/machines/upsert_search_attributes_state_machine.rs+14-8
- core/src/worker/workflow/machines/workflow_machines.rs+60-79
- core/src/worker/workflow/managed_run.rs+35-65
- core/src/worker/workflow/mod.rs+32-54
- core/src/worker/workflow/run_cache.rs+3-17
- core/src/worker/workflow/workflow_stream.rs+4-22
- docker/docker-compose-ci.yaml-25
- etc/otel-collector-ci.yaml-36
- etc/otel-collector-config.yaml+3-3
- etc/prometheus.yaml+1-1
- sdk-core-protos/Cargo.toml+1-1
- sdk-core-protos/protos/api_cloud_upstream/VERSION+1-1
- sdk-core-protos/protos/api_cloud_upstream/temporal/api/cloud/account/v1/message.proto-46
- sdk-core-protos/protos/api_cloud_upstream/temporal/api/cloud/cloudservice/v1/request_response.proto+5-254
- sdk-core-protos/protos/api_cloud_upstream/temporal/api/cloud/cloudservice/v1/service.proto+2-108
- sdk-core-protos/protos/api_cloud_upstream/temporal/api/cloud/identity/v1/message.proto+15-94
- sdk-core-protos/protos/api_cloud_upstream/temporal/api/cloud/namespace/v1/message.proto+4-102
- sdk-core-protos/protos/api_cloud_upstream/temporal/api/cloud/nexus/v1/message.proto-84
- sdk-core-protos/protos/api_cloud_upstream/temporal/api/cloud/operation/v1/message.proto+10-25
- sdk-core-protos/protos/api_cloud_upstream/temporal/api/cloud/region/v1/message.proto+1-14
- sdk-core-protos/protos/api_cloud_upstream/temporal/api/cloud/resource/v1/message.proto-25
- sdk-core-protos/protos/api_cloud_upstream/temporal/api/cloud/sink/v1/message.proto-41
- sdk-core-protos/protos/api_cloud_upstream/temporal/api/cloud/usage/v1/message.proto-59
- sdk-core-protos/protos/local/temporal/sdk/core/workflow_activation/workflow_activation.proto-3
- sdk-core-protos/protos/local/temporal/sdk/core/workflow_commands/workflow_commands.proto+8-10
- sdk-core-protos/src/lib.rs+11-125
- sdk/Cargo.toml+1-1
- sdk/src/lib.rs+5-4
- sdk/src/workflow_context.rs+34-54
- sdk/src/workflow_context/options.rs+73-130
- sdk/src/workflow_future.rs+96-91
- test-utils/Cargo.toml+1-2
- test-utils/src/lib.rs+1-18
- tests/integ_tests/heartbeat_tests.rs-1
- tests/integ_tests/metrics_tests.rs+21-237
- tests/integ_tests/polling_tests.rs-2
- tests/integ_tests/queries_tests.rs+12-7
- tests/integ_tests/update_tests.rs+6-3
- tests/integ_tests/visibility_tests.rs-1
- tests/integ_tests/workflow_tests.rs+97-125
- tests/integ_tests/workflow_tests/timers.rs-1
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
10 | 10 |
| |
11 | 11 |
| |
12 | 12 |
| |
| 13 | + | |
13 | 14 |
| |
14 | 15 |
| |
15 |
| - | |
16 |
| - | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
17 | 23 |
| |
18 | 24 |
| |
19 | 25 |
| |
| |||
758 | 764 |
| |
759 | 765 |
| |
760 | 766 |
| |
| 767 | + | |
| 768 | + | |
| 769 | + | |
| 770 | + | |
| 771 | + | |
| 772 | + | |
| 773 | + | |
| 774 | + | |
| 775 | + | |
| 776 | + | |
| 777 | + | |
| 778 | + | |
| 779 | + | |
| 780 | + | |
| 781 | + | |
| 782 | + | |
| 783 | + | |
| 784 | + | |
| 785 | + | |
| 786 | + | |
| 787 | + | |
| 788 | + | |
| 789 | + | |
| 790 | + | |
| 791 | + | |
| 792 | + | |
| 793 | + | |
| 794 | + | |
| 795 | + | |
| 796 | + | |
| 797 | + | |
| 798 | + | |
| 799 | + | |
| 800 | + | |
| 801 | + | |
| 802 | + | |
| 803 | + | |
| 804 | + | |
| 805 | + | |
| 806 | + | |
| 807 | + | |
| 808 | + | |
| 809 | + | |
| 810 | + | |
| 811 | + | |
| 812 | + | |
| 813 | + | |
| 814 | + | |
| 815 | + | |
| 816 | + | |
| 817 | + | |
| 818 | + | |
| 819 | + | |
| 820 | + | |
| 821 | + | |
| 822 | + | |
| 823 | + | |
| 824 | + | |
| 825 | + | |
| 826 | + | |
| 827 | + | |
| 828 | + | |
| 829 | + | |
| 830 | + | |
| 831 | + | |
| 832 | + | |
| 833 | + | |
| 834 | + | |
| 835 | + | |
| 836 | + | |
| 837 | + | |
| 838 | + | |
| 839 | + | |
| 840 | + | |
| 841 | + | |
| 842 | + | |
| 843 | + | |
| 844 | + | |
| 845 | + | |
| 846 | + | |
| 847 | + | |
| 848 | + | |
| 849 | + | |
| 850 | + | |
| 851 | + | |
| 852 | + | |
| 853 | + | |
| 854 | + | |
| 855 | + | |
| 856 | + | |
| 857 | + | |
| 858 | + | |
| 859 | + | |
| 860 | + | |
| 861 | + | |
| 862 | + | |
| 863 | + | |
| 864 | + | |
| 865 | + | |
| 866 | + | |
| 867 | + | |
| 868 | + | |
| 869 | + | |
| 870 | + | |
| 871 | + | |
| 872 | + | |
| 873 | + | |
| 874 | + | |
| 875 | + | |
| 876 | + | |
| 877 | + | |
| 878 | + | |
| 879 | + | |
| 880 | + | |
| 881 | + | |
| 882 | + | |
| 883 | + | |
| 884 | + | |
| 885 | + | |
| 886 | + | |
| 887 | + | |
| 888 | + | |
| 889 | + | |
| 890 | + | |
761 | 891 |
|
0 commit comments