From 36a4ede27516becd0683ef59393bcd82dd3ea39c Mon Sep 17 00:00:00 2001 From: ebarrios Date: Tue, 16 Feb 2021 19:56:18 +0100 Subject: [PATCH] Change error message in the publish func for when the credentials provider can not get a token --- .../scaffolder-backend/src/scaffolder/stages/publish/github.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/scaffolder-backend/src/scaffolder/stages/publish/github.ts b/plugins/scaffolder-backend/src/scaffolder/stages/publish/github.ts index e71da7fb84..4de928c32b 100644 --- a/plugins/scaffolder-backend/src/scaffolder/stages/publish/github.ts +++ b/plugins/scaffolder-backend/src/scaffolder/stages/publish/github.ts @@ -64,7 +64,7 @@ export class GithubPublisher implements PublisherBase { }); if (!token) { - logger.error(`Unable to adquire credentials for ${owner}/${name}`); + logger.error(`No token could be acquired for URL: ${values.storePath}`); return { remoteUrl: '', catalogInfoUrl: undefined }; }