16
I Use This!
Activity Not Available

Commits : Listings

Analyzed about 1 year ago. based on code collected about 1 year ago.
Jan 16, 2023 — Jan 16, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
The HTTP client request path when resolving an address does not apply the default proxy options nor performs proxy filering. More... about 1 year ago
Reduce useless HTTP 2 status's String allocation More... about 1 year ago
Replace the HTTP2 client stream outbound backpressure workaround with the use of the outbound write queue More... about 1 year ago
The HTTP client connection handle buffer writes from a non vertx thread and will re-schedule any message sent by the event-loop thread to preserve ordering. However this is not applied to the initial message is sent and therefore it is possible to have the initial message written after the subsequent HTTP messages. More... about 1 year ago
Remove leftovers of Java 8 classloader related code that went away with Java 11 More... about 1 year ago
Remove DatabindCodec pretty mapper (#5059) More... about 1 year ago
Remove @Repeat leftover from previous tests More... about 1 year ago
AddressResolverOptions#DEFAULT_SEACH_DOMAINS is renamed to DEFAULT_SEARCH_DOMAINS (typo fix) More... about 1 year ago
Fix racy test that does not see all HTTP server created and thus has an incorrect latch and fails More... about 1 year ago
Periodic tasks will reuse any context to deliver timer events independantly of the context. Unlike timers (which reuse the current context whether it is a duplicate) a periodic should not capture duplicate context as they would extend the lifecycle of the duplicated context. Instead a periodic should duplicate the current context so each timer event will have its own independant lifecycle. More... about 1 year ago
Merge pull request #4991 from percyashu/add-configurable-test-server-port More... about 1 year ago
FileResolver uses the JarURLConnection to unpack zip content, by default the zip is cached and shared between connections, since the resolver closes the zip file after use, it closes the pending resources openeded from this file. More... about 1 year ago
Define in HttpHeaders constants for HTTP/2 pseudo headers and use them instead of mere strings to optimize headers lookup More... about 1 year ago
Use literal values instead of constants in appropriate test More... about 1 year ago
The HTTP/2 server request handling first validates the request headers and then creates the request object. This leads to un-necessary work since same headers are lookup several times for the validation and the request creation. More... about 1 year ago
Add a test that verifies disabling of TLS 1.3 More... about 1 year ago
Add a timeout value on ConnectOptions that overrides the default client connect timeout option. More... about 1 year ago
Improve HttpTest#testConcurrentWrite More... about 1 year ago
Remove @Repeat annotation on test More... about 1 year ago
Merge pull request #5030 from eclipse-vertx/custom-jar-file-resolver More... about 1 year ago
Fix racy test using body end handler that sometimes fail because data might not have been written yet due to back-pressure More... about 1 year ago
Minor More... about 1 year ago
Do not extract files ending with a space on windows More... about 1 year ago
Change the analyze of the list of entries of a jar URL and use !/ as separator regardless of the prefix (.zip,.war,.jar) we used to include, in order to deal with custom JarFile implementations. More... about 1 year ago
Get the jar file from JarURLConnection instead of reconstructing the URL from the base URL and the entry, this allows custom JarFile extensions to provide a valid URL. More... about 1 year ago
Rewrite how unpackFromJarURL gets the list of entries (possibly more than 2) and use them More... about 1 year ago
Fix incorrect nested url More... about 1 year ago
Remove unused param arg More... about 1 year ago
resolve merge conflicts More... about 1 year ago
Use DEFAULT_HTTPS_PORT and DEFAULT_HTTPS_HOST_AND_PORT appropriately in Test More... about 1 year ago