Skip to content

Commit

Permalink
more messages
Browse files Browse the repository at this point in the history
  • Loading branch information
seattlevine committed Jul 25, 2018
1 parent f6e7cff commit c4e8754
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
Binary file modified dist/f5-cloud-libs.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion dist/verifyHash
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cli script /Common/verifyHash {
proc script::run {} {
if {[catch {
set hashes(f5-cloud-libs.tar.gz) 43ffdb6aed8ee6f08575d9ba2205e3272f2797033c932ad654c220149ec49a5c524800de155208115d42a2393c5967ecbd1282337d7e3d6596984637f5b324af
set hashes(f5-cloud-libs.tar.gz) a36852940dbd3ecf064357443a64c302550a564ca0430d7ab95206d7b9acce25b981baf3c37a2a5637988f05799cbdca0233d0012e17d32d47bb21c9eefdf2f9
set hashes(f5-cloud-libs-aws.tar.gz) da3cab163e7a070237443159fe7440b30e1ccff922442634758c7cf9d48f7343fb401be79cae717d44b74cdc43d42b11daac8e9462f05e0321f9de338617f30c
set hashes(f5-cloud-libs-azure.tar.gz) 8751e26b785baa5f8492836285cb05989d160c4c23b1bf545204391aec05f1fee82e0bc12333fd542ae7dc05c70bbce56bb99287b694c1608167377ec3b9b2c4
set hashes(f5-cloud-libs-gce.tar.gz) 67e9fef439851ad4f9fbaf3f3574dadb2fceea0b13a77ccde41bcf31c42f87d6c37c64d50d685fc9a90acedc8c80abee9114b9a232809f36746bdc8e1de1b22a
Expand Down
4 changes: 4 additions & 0 deletions lib/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,9 +168,11 @@ module.exports = {
try {
promise = theFunc.apply(thisArg, args)
.then((response) => {
logger.silly('tryUntil: got response', response);
deferred.resolve(response);
})
.catch((err) => {
logger.info('tryUntil: got error', err);
let message = '';
if (err) {
message = err.message ? err.message : err;
Expand All @@ -181,6 +183,8 @@ module.exports = {

// Allow this to work with native promises which do not have a done
if (promise.done) {
// ////////////////////////////////////////////////////////////////// TODO - remove this
logger.silly('TRY UNTIL CALLING DONE');
promise.done();
}
} catch (err) {
Expand Down

0 comments on commit c4e8754

Please sign in to comment.