Skip to content
This repository was archived by the owner on Oct 4, 2024. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
feat(hub-501): fixing subscriptionId reference in deployOperation
  • Loading branch information
kevin-boutin committed Sep 25, 2023
commit 5d4d198ab5859a9ce33ffa1155443403c06c483e
2 changes: 1 addition & 1 deletion src/services/apimService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ export class ApimService extends BaseService {
*/
private async deployOperation(resource: ApiManagementServiceResource, api: ApiContract, backend: BackendContract, operation: OperationContract, functionName: string): Promise<OperationContract> {
try {
const client = new ApiManagementClient(this.credentials, this.subscriptionId);
const client = new ApiManagementClient(this.credentials, this.apimConfig.apimSubscriptionId);

const operationConfig: OperationContract = {
name: operation.name || functionName,
Expand Down