From a48f2704c91670713e9fe80abea19c54234fdde1 Mon Sep 17 00:00:00 2001 From: Adam Harvey Date: Wed, 9 Dec 2020 16:17:48 -0500 Subject: [PATCH] Fix string template literal --- .../src/ingestion/processors/microsoftGraph/client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/catalog-backend/src/ingestion/processors/microsoftGraph/client.ts b/plugins/catalog-backend/src/ingestion/processors/microsoftGraph/client.ts index 6dded56aa1..9db76542f4 100644 --- a/plugins/catalog-backend/src/ingestion/processors/microsoftGraph/client.ts +++ b/plugins/catalog-backend/src/ingestion/processors/microsoftGraph/client.ts @@ -184,7 +184,7 @@ export class MicrosoftGraphClient { const response = await this.requestApi(`organization/${tenantId}`); if (response.status !== 200) { - await this.handleError('organization/${tenantId}', response); + await this.handleError(`organization/${tenantId}`, response); } return await response.json();