16
I Use This!
High Activity

Commits : Listings

Analyzed about 2 hours ago. based on code collected about 5 hours ago.
Apr 24, 2023 — Apr 24, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
DnsClient implementation relies on building multiple instances of DnsNameResolver which by default instantiate a FastThreadLocal query server address stream. As side effect this expand the FastThreadLocal entry size which can be considered as a leak. More... 9 days ago
Minor WebSocket API improvements More... 14 days ago
HTTP/1 server request does execute twice the delivery of the content to the handler. More... 27 days ago
Native image metadata should be in a vertx jar with the native-image classifier instead of the default jar artifact. More... 28 days ago
A Vertx uses cached reflection to build the virtual thread factory in order to remain compatible with Java 8. When running in a native image Vert.x will assume that the runtime might not have virtual thread incorrectly. More... 28 days ago
Fix a regression in HttpServerRequest#isExpectMultipart due to the cleanup of the form. More... 30 days ago
loadbalancing: add Random and Power of 2 choices policies (#5157) More... about 1 month ago
Remove un-necessary code More... about 1 month ago
Provide configuration for HTTP post request decoder limits rather than using the default limits. More... about 1 month ago
The Http1xServerConnection synchronize itself to guard the internal state of the request/response in progress. More... about 1 month ago
Merge branch 'tsegismont-issue/2797' More... about 1 month ago
Merge branch 'issue/2797' of github.com:tsegismont/vert.x into tsegismont-issue/2797 More... about 1 month ago
Fix HttpUtils#absoluteURI More... about 1 month ago
More tests for HttpUtils#absoluteURI More... about 1 month ago
Merge branch 'issues-2797' of github.com:aruis/vert.x into issue/2797 More... about 1 month ago
The Http1xClientConnection will not fail the pending stream allocation requests when the connection is closed. The stream handle closed method does ignore the stream allocation request promise assuming that it is always succeeded. When a stream it closed with a failure the stream allocation request promise should be attempted to be failed. More... about 1 month ago
The Http1xClientConnection does close the stream when the response ends ignoring the status of the request. As consequence when a server sends a response and then close the connection, the connection gets recycled and reused to allocate a new stream. Since the connection is still in use, the stream is allocated and parked until the stream that recycled the connection has finished sending the request. When the connection is closed the allocated stream promise is not failed. More... about 1 month ago
Revert "Make TrustAllOptions publicly available" More... about 1 month ago
Make TrustAllOptions publicly available More... about 1 month ago
Add option for whether semicolon is treated as normal character or not More... about 1 month ago
Fix racy WebSocket test More... about 1 month ago
WebSocket implementation should not call the drain handler when there is no drain handler More... about 1 month ago
Fix racy test More... about 1 month ago
The SslContextProvider/SslChannelProvider do not need to handle the trust all flag of the SslClientOptions and therefore could be decoupled from that. More... about 1 month ago
The Buffer toJson method is being renamed to toJsonValue since toJson is actually used by data object as a convention to convert a data object to a json value. Actually toJson should return a base64 representation of the Buffer instead of parsing the content and provide an appropriate JSON value mapping. More... about 2 months ago
Creation of DefaultChannelGroup should specify was actually incorrect: newly added channels were simply added to the group after a group close, instead they should be closed when they are added when the group is closed More... about 2 months ago
The Future transformation operation keep a reference on the future to transform as an argument of the transformation function that only needs an async result by its design. This can create a leak when a chain of transformation for serialization purpose is used, like in the SSLHelper update operation. More... about 2 months ago
Fix HttpUtils#isConnectOrUpgrade for FF WebSockets More... about 2 months ago
Merge pull request #5048 from eclipse-vertx/context-local-data-rework More... about 2 months ago
Javadoc More... about 2 months ago