parameterize s3

pull/479/head
Frostebite 2023-01-19 18:37:44 +00:00
parent c0da71ed1c
commit f8919ac920
3 changed files with 5 additions and 3 deletions

3
dist/index.js vendored
View File

@ -3310,7 +3310,8 @@ class Kubernetes {
const errorMessage = errorParsed.message || ``;
const continueStreaming = errorMessage.includes(`dial timeout, backstop`) ||
errorMessage.includes(`HttpError: HTTP request failed`) ||
errorMessage.includes(`an error occurred when try to find container`);
errorMessage.includes(`an error occurred when try to find container`) ||
errorMessage.includes(`Not Found`);
if (continueStreaming) {
cloud_runner_logger_1.default.log('Log Stream Container Not Found');
yield new Promise((resolve) => resolve(5000));

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -169,7 +169,8 @@ class Kubernetes implements ProviderInterface {
const continueStreaming =
errorMessage.includes(`dial timeout, backstop`) ||
errorMessage.includes(`HttpError: HTTP request failed`) ||
errorMessage.includes(`an error occurred when try to find container`);
errorMessage.includes(`an error occurred when try to find container`) ||
errorMessage.includes(`Not Found`);
if (continueStreaming) {
CloudRunnerLogger.log('Log Stream Container Not Found');
await new Promise((resolve) => resolve(5000));