-
Notifications
You must be signed in to change notification settings - Fork 121
fix: Race condition in testNonBlockingWithMultipleMessages #636
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
Conversation
Summary of ChangesHello @kabir, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request resolves a race condition within the Highlights
Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
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.
Code Review
This pull request fixes a race condition in testNonBlockingWithMultipleMessages by introducing a new test utility awaitChildQueueCountStable. This utility waits for the queue state to stabilize before proceeding, which makes the test more robust. The changes are well-implemented across the gRPC, JSON-RPC, and REST test harnesses. I've added a few suggestions to improve the implementation of the new test utilities for better robustness and readability.
reference/jsonrpc/src/test/java/io/a2a/server/apps/quarkus/A2ATestRoutes.java
Show resolved
Hide resolved
reference/rest/src/test/java/io/a2a/server/rest/quarkus/A2ATestRoutes.java
Show resolved
Hide resolved
tests/server-common/src/test/java/io/a2a/server/apps/common/TestUtilsBean.java
Show resolved
Hide resolved
|
It would be nice to have a bit more Javadoc and comment in the commit message :) |
9cdc294 to
3a1bf2e
Compare
Addresses intermittent test failure where subscribeToTask created child queues but EventConsumer polling loops hadn't started yet when the agent executed, causing emitted events to be lost. Root Cause: - awaitStreamingSubscription() only guarantees transport-level subscription (Flow.Subscriber.onSubscribe() called) - EventConsumer polling starts asynchronously on eventConsumerExecutor thread - Agent execution could begin before EventConsumer was actively polling - Events emitted before polling started were lost in the queue Solution: - Added awaitChildQueueCountStable() to TestUtilsBean - Waits for child queue count to match expected value for 3 consecutive checks (150ms total), ensuring EventConsumer is actively polling - Follows pattern from commit 18d2abf which fixed similar race condition - Exposed REST endpoints in all transports (JSON-RPC, gRPC, REST) - Added client helper in AbstractA2AServerTest - Applied stability check after subscribeToTask() in tests - Increased timeouts from 10s to 15s for CI stability Files Modified: - TestUtilsBean.java: Core synchronization logic with comprehensive Javadoc - A2ATestRoutes.java (JSON-RPC, REST): REST endpoints for stability checks - A2ATestResource.java (gRPC): REST endpoints for stability checks - AbstractA2AServerTest.java: Client helper and extensive inline comments
|
@ehsavoie done |
1 similar comment
|
@ehsavoie done |
Addresses intermittent test failure where subscribeToTask created child queues
but EventConsumer polling loops hadn't started yet when the agent executed,
causing emitted events to be lost.
Root Cause:
(Flow.Subscriber.onSubscribe() called)
Solution:
checks (150ms total), ensuring EventConsumer is actively polling
Files Modified: