Taskcluster login fix on prototype and tc-staging (#7383)

* Remove forward slash in tcClientIdMap const
This commit is contained in:
Sarah Clements 2022-02-14 17:25:20 +00:00 коммит произвёл GitHub
Родитель cb7d39b0e6
Коммит eaf9bbf45d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -3,10 +3,10 @@ import { tcAuthCallbackUrl } from '../helpers/url';
export const tcClientIdMap = {
'https://treeherder.mozilla.org': 'production',
'https://treeherder.allizom.org': 'stage',
'https://prototype.treeherder.nonprod.cloudops.mozgcp.net/': 'dev',
'https://prototype.treeherder.nonprod.cloudops.mozgcp.net': 'dev',
'http://localhost:5000': 'localhost-5000',
'http://localhost:8000': 'localhost-8000',
'https://tc-staging.treeherder.nonprod.cloudops.mozgcp.net/':
'https://tc-staging.treeherder.nonprod.cloudops.mozgcp.net':
'taskcluster-staging',
};