Skip to content

Commit

Permalink
fix: be sure to propagate handler failures
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfig authored and warner committed May 7, 2020
1 parent 904b610 commit 2b931fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/eventual-send/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ export function makeHandledPromise(Promise) {
// so we don't risk the user's args leaking into this expansion.
// eslint-disable-next-line no-use-before-define
resolve(forwardingHandler[operation](o, ...opArgs, returnedP));
});
}).catch(reject);
}
})
.catch(reject);
Expand Down

0 comments on commit 2b931fc

Please sign in to comment.