Skip to content

Commit

Permalink
fix: Test hooks timeout when using rest transport (#253)
Browse files Browse the repository at this point in the history
  • Loading branch information
abmusse committed Apr 22, 2020
1 parent 63ec53c commit 60fdd5b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/functional/checkObjectExists.js
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,9 @@ function checkObjectExists(config, name, type, callback) {
checkObjectExistsODBC(config.transportOptions, object, callback);
} else if (config.transport === 'ssh') {
checkObjectExistsSSH(config.transportOptions, object, callback);
} else {
// we cannot check object existence using the rest transport
callback(null, true);
}
}

Expand Down

0 comments on commit 60fdd5b

Please sign in to comment.