-
Notifications
You must be signed in to change notification settings - Fork 844
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix unhandled exception #7743
Fix unhandled exception #7743
Conversation
Signed-off-by: [email protected] <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you add a test to show the problem that is fixed
That is really hard, as the problem was a race condition. |
Signed-off-by: [email protected] <[email protected]>
…ixUnhandledException
Signed-off-by: [email protected] <[email protected]>
Signed-off-by: [email protected] <[email protected]>
@@ -28,6 +28,7 @@ | |||
- Corrects a regression where custom plugin services are not initialized correctly. [#7625](https://github.com/hyperledger/besu/pull/7625) | |||
- Fix for IBFT2 chains using the BONSAI DB format [#7631](https://github.com/hyperledger/besu/pull/7631) | |||
- Fix reading `tx-pool-min-score` option from configuration file [#7623](https://github.com/hyperledger/besu/pull/7623) | |||
- Fix an undhandled exception. [#7733](https://github.com/hyperledger/besu/issues/7733) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Fix an undhandled exception. [#7733](https://github.com/hyperledger/besu/issues/7733) | |
- Fix an unhandled exception. [#7733](https://github.com/hyperledger/besu/issues/7733) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
ok fair enough |
PR description
Fixes an unhandled exception:
{"@timestamp":"2024-10-08T01:07:36,808","level":"ERROR","thread":"vert.x-eventloop-thread-3","class":"ContextImpl","message":"Unhandled exception","throwable":" java.util.NoSuchElementException\n\tat 1.next(CircularFifoQueue.java:385)\n\tat java.base/java.util.AbstractCollection.contains(AbstractCollection.java:112)\n\tat org.hyperledger.besu.ethereum.p2p.discovery.internal.PeerTable.isIpAddressInvalid(PeerTable.java:217)\n\tat
Fixes #7733