Skip to content

Commit

Permalink
Merge pull request #2982 from cloudflare/jlee/eventsource-rethrow-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jasnell authored Oct 23, 2024
2 parents 4404bf1 + ccdb5a9 commit c0d90a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/workerd/api/eventsource.c++
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ kj::Promise<void> processBody(IoContext& context, kj::Promise<DeferredProxy<void
co_return;
}
// Propagate the exception up.
throw;
kj::throwFatalException(kj::mv(ex));
}
}
} // namespace
Expand Down

0 comments on commit c0d90a4

Please sign in to comment.