fix upload errors causing double callback

This commit is contained in:
Girish Ramakrishnan
2018-02-27 19:16:03 -08:00
parent 441e514119
commit 98e19e6df5
3 changed files with 7 additions and 4 deletions

View File

@@ -35,6 +35,7 @@ function upload(apiConfig, backupFilePath, sourceStream, callback) {
assert.strictEqual(typeof callback, 'function');
// Result: none
// sourceStream errors are handled upstream
callback(new Error('not implemented'));
}