Skip to content
This repository has been archived by the owner on Jun 13, 2023. It is now read-only.

Commit

Permalink
fix(wsk): fix hanging openwhisk actions (#428)
Browse files Browse the repository at this point in the history
Co-authored-by: Ran Ribenzaft <[email protected]>
  • Loading branch information
tripodsan and ranrib authored Feb 7, 2021
1 parent 2e6dea6 commit 84dde7f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/wrappers/openwhisk.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,11 @@ function baseOpenWhiskWrapper(functionToWrap, options) {
eventInterface.setException(runner, err);
runnerSendUpdateHandler();
throw err;
}).finally(() => (
}).finally(() => {
tracer.sendTrace(runnerSendUpdateHandler).catch(
() => {}
).finally(unregisterTracer)
));
).finally(unregisterTracer);
});
}
tracer.sendTrace(runnerSendUpdateHandler).catch(() => {}).finally(unregisterTracer);
return result;
Expand Down

0 comments on commit 84dde7f

Please sign in to comment.