Skip to content

Commit c38d662

Browse files
committed
fix, linting, formatting
1 parent b40a55c commit c38d662

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

packages/client/src/workflow-client.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1646,6 +1646,7 @@ export class WorkflowClient extends BaseClient {
16461646
return decodeCountWorkflowExecutionsResponse(response);
16471647
}
16481648

1649+
// eslint-disable-next-line deprecation/deprecation
16491650
protected adaptInterceptors(): WorkflowClientInterceptors | WorkflowClientInterceptor[] {
16501651
if (typeof this.options.interceptors === 'object' && 'calls' in this.options.interceptors) {
16511652
// eslint-disable-next-line deprecation/deprecation

packages/core-bridge/src/worker.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -672,10 +672,8 @@ mod config {
672672
self.local_activity_task_slot_supplier
673673
.into_slot_supplier(&mut rbo),
674674
);
675-
tuner_holder.nexus_slot_options(
676-
self.nexus_task_slot_supplier
677-
.into_slot_supplier(&mut rbo)
678-
);
675+
tuner_holder
676+
.nexus_slot_options(self.nexus_task_slot_supplier.into_slot_supplier(&mut rbo));
679677
if let Some(rbo) = rbo {
680678
tuner_holder.resource_based_options(rbo);
681679
}

packages/worker/src/connection.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {
1111
OperatorService,
1212
HealthService,
1313
TestService,
14-
InternalConnectionLikeSymbol
14+
InternalConnectionLikeSymbol,
1515
} from '@temporalio/client';
1616
import { InternalConnectionOptions, InternalConnectionOptionsSymbol } from '@temporalio/client/lib/connection';
1717
import { TransportError } from './errors';

0 commit comments

Comments
 (0)