Fix intermittent universe-restart.rkt DrDr failure#252
Merged
mfelleisen merged 1 commit intoracket:masterfrom Jan 22, 2026
Merged
Fix intermittent universe-restart.rkt DrDr failure#252mfelleisen merged 1 commit intoracket:masterfrom
mfelleisen merged 1 commit intoracket:masterfrom
Conversation
Handle network errors in broadcast when universe drops a world. Example: https://drdr.racket-lang.org/71877/racket/share/pkgs/htdp-test/2htdp/tests/universe-restart.rkt
mfelleisen
reviewed
Jan 22, 2026
| (when *out* | ||
| (check-result 'send sexp? "Sexp expected; given ~e\n" msg) | ||
| (tcp-send *out* msg))) | ||
| (with-handlers ([exn:fail:network? (lambda (e) (set! *out* #f))]) |
Contributor
|
Thanks! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Handle network errors in
broadcastwhen universe drops a world.When a universe drops a world by closing the TCP connection, subsequent attempts by the world to send messages would raise a "Broken pipe" error. This caused intermittent test failures in
universe-restart.rkt.The fix catches
exn:fail:network?in thebroadcastfunction and sets*out*to#f, preventing the exception from propagating.Example failure: https://drdr.racket-lang.org/71877/racket/share/pkgs/htdp-test/2htdp/tests/universe-restart.rkt