Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies and fix merge mistake #745

Merged
merged 3 commits into from
Sep 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bin/cml/runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ const shutdown = async (opts) => {
winston.info('runner status', { reason, status: 'terminated' });
}

winston.info(`waiting ${RUNNER_DESTROY_DELAY} seconds before exiting...`);
await sleep(RUNNER_DESTROY_DELAY);
winston.info(`waiting ${destroyDelay} seconds before exiting...`);
await sleep(destroyDelay);

if (cloud) {
await destroyTerraform();
Expand Down
2 changes: 1 addition & 1 deletion bin/cml/tensorboard-dev.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Options:
-c, --credentials TB credentials as json. Usually found at
~/.config/tensorboard/credentials/uploader-creds.json. If
not specified will look for the json at the env variable
TB_CREDENTIALS. [string]
TB_CREDENTIALS. [string] [required]
--logdir Directory containing the logs to process. [string]
--name Tensorboard experiment title. Max 100 characters. [string]
--description Tensorboard experiment description. Markdown format. Max
Expand Down
Loading