Fix regex for hiding some messages from the error log - #608
Open
wfyson wants to merge 1 commit into
Open
Conversation
drn05r
requested changes
Sep 3, 2026
drn05r
left a comment
Contributor
There was a problem hiding this comment.
I have also noted this happens because of
eprints3.4/perl_lib/EPrints/Page.pm
Line 83 in 5efb3db
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.
Minor fix to tidy up some error log content. From @mephillips-durham
The Apache error log quite frequently contains reports like this:
David McBride has had a look at the code and points out that there is a regular expression which is supposed to avoid 'Software cause connection abort' from being logged like this. But as it is anchored to the start of the string it does not match our error, which starts
:Apache2 IO write: (103).Removing the
^would improve things, and you might want to add:Apache2... to match the others. Could you consider feeding this back upstream as well as committing it to git for our installation?