Merge pull request #1218 from balena-io/logging-typos

logging: fix up some typos
This commit is contained in:
xginn8 2020-03-16 16:46:22 -04:00 committed by GitHub
commit 49b0d7115b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -84,7 +84,7 @@ export class DockerUtils extends DockerToolbelt {
if (!_.includes([2, 3], deltaOpts.deltaVersion)) {
logFn(
`Unsupported delta version: ${deltaOpts.deltaVersion}. Failling back to regular pull`,
`Unsupported delta version: ${deltaOpts.deltaVersion}. Falling back to regular pull`,
);
return await this.fetchImageWithProgress(imgDest, deltaOpts, onProgress);
}
@ -193,7 +193,7 @@ export class DockerUtils extends DockerToolbelt {
break;
default:
throw new Error(
`Unsupposed delta version: ${deltaOpts.deltaVersion}`,
`Unsupported delta version: ${deltaOpts.deltaVersion}`,
);
}
} catch (e) {