pull/273/head
Frostebite 2021-06-06 04:01:26 +01:00
parent 0717a3b2db
commit 0d1f360db7
3 changed files with 3 additions and 1 deletions

1
dist/index.js vendored
View File

@ -1053,6 +1053,7 @@ class Kubernetes {
core.info('LOGS RECEIVED'); core.info('LOGS RECEIVED');
core.info(data); core.info(data);
}); });
yield new Promise((resolve) => setTimeout(resolve, pollInterval));
} }
} }
catch (error) { catch (error) {

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -353,6 +353,7 @@ class Kubernetes {
core.info('LOGS RECEIVED'); core.info('LOGS RECEIVED');
core.info(data); core.info(data);
}); });
await new Promise((resolve) => setTimeout(resolve, pollInterval));
} }
} catch (error) { } catch (error) {
core.error(JSON.stringify(error, undefined, 4)); core.error(JSON.stringify(error, undefined, 4));