1
I Use This!
High Activity

Commits : Listings

Analyzed 26 minutes ago. based on code collected 30 minutes ago.
Jun 12, 2023 — Jun 12, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Vert.x TCP client does configure the TLS hostname verification algorithm to the empty string which means no checks of the server identity shall be performed beyond checking the validity of the certificate. More... 4 months ago
Merge pull request #5070 from eclipse-vertx/http-client-connection-api More... 4 months ago
Homogeneous naming of shutdown/close methods. More... 4 months ago
Remove deprecated shutdown(timeoutMillis) methods More... 4 months ago
Make homogeneous close/shutdown methods More... 4 months ago
Add HttpConnection#shutdown(timeout, unit) and deprecate HttpConnection#shutdown(timeout) More... 4 months ago
Add support for HTTP 1.x server connection shutdown. More... 4 months ago
Remove Http1xServerConnection#requestFailed More... 4 months ago
Minor refactor inside Http1xServerConnection More... 4 months ago
Minor More... 4 months ago
Introduce a proxy for client connection in order to queue stream requests in front of connections More... 4 months ago
Minor More... 4 months ago
Improve JsonFactory creation and propagate its usage to DatabindCodec More... 4 months ago
Add helper method to determine if request can be upgraded to websocket. More... 4 months ago
Remove vertx.javaCompilerOptions system property that is not documented nor tested More... 4 months ago
Remove vertx.cluster.managerClass system property More... 4 months ago
Port testObjectMapperConfigAppliesToPrettyPrinting to main branch More... 4 months ago
Merge pull request #5088 from sarankk/dynamic-traffic-options-update More... 4 months ago
Address review, update traffic options in examples onSuccess More... 4 months ago
The SslChannelProvider class maintains a map of server name to Netty SslContext that is filled when a client provides a server name. When a server name does not resolve to a KeyManagerFactory or TrustManagerFactory, the default factories are used and the entry is stored in the map. Instead no specific factory is resolved the default Netty SslContext is used, since this can lead to a a memory leak when a client specifies spurious SNI server names. This affects only a TCP server when SNI is set in the HttpServerOptions. More... 4 months ago
Refactor and unify client/server code in SslChannelProvider/SslContextProvider More... 4 months ago
The TCP client will not send the correct server name to the client due to SSL client resumption performed by the SSL implementation although we are using a new engine implementation. More... 4 months ago
Handle the case where the file resolver is used with a classloader that return a URL for directories. More... 4 months ago
Address PR review More... 4 months ago
Allow dynamic update of read and write limits set for Servers More... 4 months ago
Unused classes cleanup More... 4 months ago
The upgrade to Jackson 2.16.x brought the new recycler pool feature. We should support Jackson versions that do not support this feature to avoid forcing users to move Jackson 2.16.x More... 4 months ago
Use a virtual threads friendly pool with Jackson More... 4 months ago
The CombinerExecutor class creates an instance of FastThreadLocal for each combiner executor leading to an increase of the InternalThreadLocalMap index. Consequently each thread local map of FastThreadLocalThread will get a new map sized accordingly, leading to an eventual memory leak. More... 5 months ago
Improve the HostAndPort API when dealing with URI authorities More... 5 months ago