Skip to content

Commit

Permalink
chore(internal): fix log message typo (#6317)
Browse files Browse the repository at this point in the history
  • Loading branch information
viceice committed May 24, 2020
1 parent 692bddc commit 342bfd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/util/exec/docker/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ export async function removeDanglingContainers(): Promise<void> {
throw new Error(SYSTEM_INSUFFICIENT_MEMORY);
}
if (err.stderr?.includes('Cannot connect to the Docker daemon')) {
logger.info('No docker deamon found');
logger.info('No docker daemon found');
} else {
logger.warn({ err }, 'Error removing dangling containers');
}
Expand Down

0 comments on commit 342bfd4

Please sign in to comment.