Skip to content

Commit 129ab88

Browse files
committed
Update core w/ otel http fix
1 parent 77cd10e commit 129ab88

File tree

4 files changed

+25
-29
lines changed

4 files changed

+25
-29
lines changed

packages/core-bridge/Cargo.lock

Lines changed: 8 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/core-bridge/Cargo.toml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,29 @@ anyhow = "1.0"
2424
async-trait = "0.1.83"
2525
bridge-macros = { path = "bridge-macros" }
2626
futures = { version = "0.3", features = ["executor"] }
27-
neon = { version = "1.0.0", default-features = false, features = ["napi-6", "futures"] }
28-
opentelemetry = "0.26"
27+
neon = { version = "1.0.0", default-features = false, features = [
28+
"napi-6",
29+
"futures",
30+
] }
31+
opentelemetry = "0.29"
2932
os_pipe = "1.2.1"
3033
parking_lot = "0.12"
3134
prost = "0.13"
3235
prost-types = "0.13"
3336
serde = { version = "1.0", features = ["derive"] }
3437
serde_json = "1.0"
35-
temporal-sdk-core = { version = "*", path = "./sdk-core/core", features = ["ephemeral-server"] }
38+
temporal-sdk-core = { version = "*", path = "./sdk-core/core", features = [
39+
"ephemeral-server",
40+
] }
3641
temporal-client = { version = "*", path = "./sdk-core/client" }
3742
thiserror = "2"
3843
tokio = "1.13"
3944
tokio-stream = "0.1"
4045
tonic = "0.12"
4146
tracing = "0.1"
42-
tracing-subscriber = { version = "0.3", default-features = false, features = ["parking_lot", "env-filter", "registry", "ansi"] }
47+
tracing-subscriber = { version = "0.3", default-features = false, features = [
48+
"parking_lot",
49+
"env-filter",
50+
"registry",
51+
"ansi",
52+
] }

packages/worker/src/worker-tuner.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ export interface CustomSlotSupplier<SI extends SlotInfo> {
172172
*
173173
* @param ctx The context for marking a slot as used.
174174
*/
175-
markSlotUsed(slot: SlotMarkUsedContext<SI>): void;
175+
markSlotUsed(ctx: SlotMarkUsedContext<SI>): void;
176176

177177
/**
178178
* This function is called once a permit is no longer needed. This could be because the task has
@@ -181,7 +181,7 @@ export interface CustomSlotSupplier<SI extends SlotInfo> {
181181
*
182182
* @param ctx The context for releasing a slot.
183183
*/
184-
releaseSlot(slot: SlotReleaseContext<SI>): void;
184+
releaseSlot(ctx: SlotReleaseContext<SI>): void;
185185
}
186186

187187
export type SlotInfo = WorkflowSlotInfo | ActivitySlotInfo | LocalActivitySlotInfo;

0 commit comments

Comments
 (0)