We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 109aab2 commit ab0baf9Copy full SHA for ab0baf9
mcp/src/main/java/io/modelcontextprotocol/client/transport/HttpClientSseClientTransport.java
@@ -86,7 +86,7 @@ public class HttpClientSseClientTransport implements ClientMcpTransport {
86
private volatile boolean isClosing = false;
87
88
/** Latch for coordinating endpoint discovery */
89
- private CountDownLatch closeLatch = new CountDownLatch(1);
+ private final CountDownLatch closeLatch = new CountDownLatch(1);
90
91
/** Holds the discovered message endpoint URL */
92
private final AtomicReference<String> messageEndpoint = new AtomicReference<>();
0 commit comments