From 2471c0a40a807ee11a49501e120ea04df7e4ad30 Mon Sep 17 00:00:00 2001 From: Michael McDermott Date: Wed, 24 Jan 2024 16:13:30 -0500 Subject: [PATCH] Use correct CreateTokenCommand --- packages/token-providers/src/bundle/client-sso-oidc-node.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/token-providers/src/bundle/client-sso-oidc-node.ts b/packages/token-providers/src/bundle/client-sso-oidc-node.ts index 21f963150ae4c..24bce9d0ccbd2 100644 --- a/packages/token-providers/src/bundle/client-sso-oidc-node.ts +++ b/packages/token-providers/src/bundle/client-sso-oidc-node.ts @@ -1015,7 +1015,7 @@ class CreateTokenCommand extends $Command { */ resolveMiddleware(clientStack, configuration, options) { this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize)); - this.middlewareStack.use(getEndpointPlugin(configuration, _CreateTokenCommand.getEndpointParameterInstructions())); + this.middlewareStack.use(getEndpointPlugin(configuration, CreateTokenCommand.getEndpointParameterInstructions())); const stack = clientStack.concat(this.middlewareStack); const { logger } = configuration; const clientName = "SSOOIDCClient";