File tree
8 files changed
+414
-217
lines changed- temporalio
- bridge
- src
- tests/api
8 files changed
+414
-217
lines changedLines changed: 282 additions & 171 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 4 additions & 5 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
10 | 10 |
| |
11 | 11 |
| |
12 | 12 |
| |
13 |
| - | |
14 |
| - | |
15 |
| - | |
16 |
| - | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
17 | 16 |
| |
18 | 17 |
| |
19 | 18 |
| |
| |||
23 | 22 |
| |
24 | 23 |
| |
25 | 24 |
| |
26 |
| - | |
| 25 | + | |
27 | 26 |
| |
28 | 27 |
| |
29 | 28 |
| |
|
Lines changed: 5 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
52 | 52 |
| |
53 | 53 |
| |
54 | 54 |
| |
| 55 | + | |
55 | 56 |
| |
56 | 57 |
| |
57 | 58 |
| |
| |||
102 | 103 |
| |
103 | 104 |
| |
104 | 105 |
| |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
105 | 110 |
| |
106 | 111 |
| |
107 | 112 |
| |
|
- Cargo.toml+7-3
- client/Cargo.toml+8-5
- client/src/lib.rs+100-31
- client/src/raw.rs+1-1
- core-api/Cargo.toml+3-3
- core/Cargo.toml+20-20
- core/src/core_tests/mod.rs+3-3
- core/src/ephemeral_server/mod.rs+1-5
- core/src/protosext/mod.rs+1-1
- core/src/telemetry/metrics.rs+21-251
- core/src/telemetry/mod.rs+9-37
- core/src/telemetry/otel.rs+276
- core/src/telemetry/prometheus_server.rs+34-21
- core/src/worker/activities/local_activities.rs+1-1
- core/src/worker/client/mocks.rs+3-4
- core/src/worker/workflow/history_update.rs+6-6
- core/src/worker/workflow/machines/activity_state_machine.rs+2-2
- core/src/worker/workflow/machines/cancel_workflow_state_machine.rs+2-2
- core/src/worker/workflow/machines/child_workflow_state_machine.rs+14-18
- core/src/worker/workflow/machines/transition_coverage.rs+6-7
- core/src/worker/workflow/machines/workflow_machines.rs+5-5
- core/src/worker/workflow/machines/workflow_task_state_machine.rs+2-2
- sdk-core-protos/Cargo.toml+4-4
- sdk-core-protos/src/lib.rs+4-4
- sdk/Cargo.toml+3-4
- sdk/src/lib.rs+1-1
- test-utils/Cargo.toml+3-3
- test-utils/src/histfetch.rs+1-1
- test-utils/src/lib.rs+1-1
- tests/integ_tests/client_tests.rs+2-2
- tests/integ_tests/ephemeral_server_tests.rs+1-1
- tests/integ_tests/metrics_tests.rs+3-3
- tests/integ_tests/update_tests.rs+2-4
- tests/integ_tests/visibility_tests.rs+2-2
- tests/integ_tests/workflow_tests/eager.rs+1-1
- tests/main.rs+2-2
Lines changed: 9 additions & 12 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 |
| - | |
2 | 1 |
| |
3 | 2 |
| |
4 | 3 |
| |
5 | 4 |
| |
6 |
| - | |
7 | 5 |
| |
8 | 6 |
| |
9 | 7 |
| |
| |||
31 | 29 |
| |
32 | 30 |
| |
33 | 31 |
| |
| 32 | + | |
34 | 33 |
| |
35 | 34 |
| |
36 | 35 |
| |
| |||
75 | 74 |
| |
76 | 75 |
| |
77 | 76 |
| |
78 |
| - | |
79 |
| - | |
80 |
| - | |
81 |
| - | |
82 |
| - | |
83 | 77 |
| |
84 | 78 |
| |
85 | 79 |
| |
86 | 80 |
| |
87 | 81 |
| |
88 |
| - | |
89 |
| - | |
90 |
| - | |
91 |
| - | |
| 82 | + | |
92 | 83 |
| |
93 | 84 |
| |
94 | 85 |
| |
| |||
114 | 105 |
| |
115 | 106 |
| |
116 | 107 |
| |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
117 | 112 |
| |
118 | 113 |
| |
119 | 114 |
| |
| |||
396 | 391 |
| |
397 | 392 |
| |
398 | 393 |
| |
399 |
| - | |
| 394 | + | |
| 395 | + | |
| 396 | + | |
400 | 397 |
| |
401 | 398 |
| |
402 | 399 |
| |
|
Lines changed: 21 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
97 | 97 |
| |
98 | 98 |
| |
99 | 99 |
| |
| 100 | + | |
100 | 101 |
| |
101 | 102 |
| |
102 | 103 |
| |
| |||
116 | 117 |
| |
117 | 118 |
| |
118 | 119 |
| |
| 120 | + | |
| 121 | + | |
| 122 | + | |
119 | 123 |
| |
120 | 124 |
| |
121 | 125 |
| |
| |||
152 | 156 |
| |
153 | 157 |
| |
154 | 158 |
| |
| 159 | + | |
155 | 160 |
| |
156 | 161 |
| |
157 | 162 |
| |
| |||
261 | 266 |
| |
262 | 267 |
| |
263 | 268 |
| |
| 269 | + | |
| 270 | + | |
| 271 | + | |
| 272 | + | |
| 273 | + | |
| 274 | + | |
| 275 | + | |
| 276 | + | |
| 277 | + | |
| 278 | + | |
| 279 | + | |
| 280 | + | |
| 281 | + | |
| 282 | + | |
| 283 | + | |
| 284 | + | |
264 | 285 |
| |
265 | 286 |
| |
266 | 287 |
| |
|
Lines changed: 15 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
120 | 120 |
| |
121 | 121 |
| |
122 | 122 |
| |
| 123 | + | |
123 | 124 |
| |
124 | 125 |
| |
125 | 126 |
| |
| |||
161 | 162 |
| |
162 | 163 |
| |
163 | 164 |
| |
| 165 | + | |
164 | 166 |
| |
165 | 167 |
| |
166 | 168 |
| |
| |||
238 | 240 |
| |
239 | 241 |
| |
240 | 242 |
| |
| 243 | + | |
| 244 | + | |
| 245 | + | |
| 246 | + | |
| 247 | + | |
241 | 248 |
| |
242 | 249 |
| |
243 | 250 |
| |
| |||
740 | 747 |
| |
741 | 748 |
| |
742 | 749 |
| |
| 750 | + | |
| 751 | + | |
| 752 | + | |
| 753 | + | |
| 754 | + | |
| 755 | + | |
| 756 | + | |
| 757 | + | |
743 | 758 |
| |
744 | 759 |
| |
745 | 760 |
| |
|
Lines changed: 77 additions & 28 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | 1 |
| |
| 2 | + | |
2 | 3 |
| |
3 | 4 |
| |
4 | 5 |
| |
| |||
27 | 28 |
| |
28 | 29 |
| |
29 | 30 |
| |
30 |
| - | |
31 |
| - | |
32 |
| - | |
33 |
| - | |
34 |
| - | |
35 |
| - | |
36 | 31 |
| |
37 | 32 |
| |
38 | 33 |
| |
| |||
41 | 36 |
| |
42 | 37 |
| |
43 | 38 |
| |
44 |
| - | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
45 | 44 |
| |
46 | 45 |
| |
47 | 46 |
| |
48 | 47 |
| |
49 | 48 |
| |
50 | 49 |
| |
51 |
| - | |
| 50 | + | |
52 | 51 |
| |
53 | 52 |
| |
54 | 53 |
| |
55 | 54 |
| |
56 | 55 |
| |
57 | 56 |
| |
58 | 57 |
| |
59 |
| - | |
60 |
| - | |
61 |
| - | |
| 58 | + | |
62 | 59 |
| |
63 | 60 |
| |
64 | 61 |
| |
| |||
71 | 68 |
| |
72 | 69 |
| |
73 | 70 |
| |
74 |
| - | |
75 | 71 |
| |
76 | 72 |
| |
77 | 73 |
| |
| |||
83 | 79 |
| |
84 | 80 |
| |
85 | 81 |
| |
86 |
| - | |
87 | 82 |
| |
88 | 83 |
| |
89 | 84 |
| |
| |||
101 | 96 |
| |
102 | 97 |
| |
103 | 98 |
| |
104 |
| - | |
105 |
| - | |
106 |
| - | |
107 |
| - | |
| 99 | + | |
108 | 100 |
| |
109 | 101 |
| |
110 | 102 |
| |
111 |
| - | |
112 | 103 |
| |
113 | 104 |
| |
114 | 105 |
| |
115 | 106 |
| |
116 | 107 |
| |
117 |
| - | |
118 | 108 |
| |
119 | 109 |
| |
120 | 110 |
| |
121 |
| - | |
122 |
| - | |
123 |
| - | |
| 111 | + | |
124 | 112 |
| |
125 | 113 |
| |
126 |
| - | |
127 |
| - | |
128 |
| - | |
129 |
| - | |
130 |
| - | |
131 |
| - | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
| 140 | + | |
| 141 | + | |
| 142 | + | |
132 | 143 |
| |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
| 157 | + | |
| 158 | + | |
| 159 | + | |
| 160 | + | |
| 161 | + | |
| 162 | + | |
| 163 | + | |
| 164 | + | |
| 165 | + | |
| 166 | + | |
| 167 | + | |
| 168 | + | |
| 169 | + | |
| 170 | + | |
| 171 | + | |
| 172 | + | |
| 173 | + | |
| 174 | + | |
| 175 | + | |
| 176 | + | |
| 177 | + | |
| 178 | + | |
| 179 | + | |
| 180 | + | |
| 181 | + | |
133 | 182 |
| |
134 | 183 |
|
0 commit comments