From 4e6bf55b2fc0056358d74a0ef0bb6b04a847e64d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Notin?= Date: Mon, 8 Jul 2024 15:14:14 +0200 Subject: [PATCH] Mention "allow-no-subscriptions" in missing subscriptionId error --- src/common/LoginConfig.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/LoginConfig.ts b/src/common/LoginConfig.ts index d3a3e1c74..0f69f0f89 100644 --- a/src/common/LoginConfig.ts +++ b/src/common/LoginConfig.ts @@ -99,7 +99,7 @@ export class LoginConfig { } } if (!this.subscriptionId && !this.allowNoSubscriptionsLogin) { - throw new Error("Ensure subscriptionId is supplied."); + throw new Error("Ensure 'subscription-id' is supplied or 'allow-no-subscriptions' is 'true'."); } }