chore(error): improve error log message for not found project id (#3507)

This commit is contained in:
Iain Sproat 2024-11-18 16:29:04 +00:00 коммит произвёл GitHub
Родитель 32fed39fb1
Коммит 4e7a00250c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 13 добавлений и 2 удалений

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

@ -247,7 +247,12 @@ export const validateRequiredStreamFactory =
if (!stream)
return authFailed(
context,
new NotFoundError('Stream inputs are malformed'),
new NotFoundError(
'Project ID is malformed and cannot be found, or the project does not exist',
{
info: { projectId: params.streamId }
}
),
true
)
context.stream = stream

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

@ -380,7 +380,13 @@ describe('AuthZ @shared', () => {
context: {}
})
expectAuthError(new NotFoundError('Stream inputs are malformed'), authResult)
expectAuthError(
new NotFoundError(
'Project ID is malformed and cannot be found, or the project does not exist',
{ info: { projectId: 'the need for stream' } }
),
authResult
)
})
})
describe('Escape hatches', () => {