Skip to content

Commit 4c67a37

Browse files
committed
Update core w/ otel http fix
1 parent 77cd10e commit 4c67a37

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/core-bridge/sdk-core

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)