Skip to content

Commit a726eda

Browse files
committed
Merge b35956d into 1.1.13
2 parents b933492 + b35956d commit a726eda

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

reactor-netty-core/src/main/java/reactor/netty/resources/ConnectionProvider.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018-2022 VMware, Inc. or its affiliates, All Rights Reserved.
2+
* Copyright (c) 2018-2023 VMware, Inc. or its affiliates, All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -570,8 +570,8 @@ public final SPEC pendingAcquireTimeout(Duration pendingAcquireTimeout) {
570570
*
571571
* @param maxConnections the maximum number of connections (per connection pool) before start pending
572572
* @return {@literal this}
573-
* @see #allocationStrategy(AllocationStrategy)
574573
* @throws IllegalArgumentException if maxConnections is negative
574+
* @see #allocationStrategy(AllocationStrategy)
575575
*/
576576
public final SPEC maxConnections(int maxConnections) {
577577
if (maxConnections <= 0) {
@@ -783,8 +783,8 @@ public final SPEC pendingAcquireTimer(BiFunction<Runnable, Duration, Disposable>
783783
*
784784
* @param allocationStrategy the {@link AllocationStrategy} to use
785785
* @return {@literal this}
786-
* @see #maxConnections()
787786
* @since 1.0.20
787+
* @see #maxConnections()
788788
*/
789789
public final SPEC allocationStrategy(AllocationStrategy<?> allocationStrategy) {
790790
this.allocationStrategy = Objects.requireNonNull(allocationStrategy, "allocationStrategy");

reactor-netty-http/src/main/java/reactor/netty/http/server/HttpServerConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,8 @@ public boolean isSecure() {
192192
* The configured maximum number of HTTP/1.1 requests which can be served until the connection is closed by the server.
193193
*
194194
* @return the configured maximum number of HTTP/1.1 requests which can be served until the connection is closed by the server.
195-
* @see HttpServer#maxKeepAliveRequests(int)
196195
* @since 1.0.13
196+
* @see HttpServer#maxKeepAliveRequests(int)
197197
*/
198198
public int maxKeepAliveRequests() {
199199
return maxKeepAliveRequests;

reactor-netty-http/src/main/java/reactor/netty/http/server/logging/AccessLogArgProvider.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2020-2022 VMware, Inc. or its affiliates, All Rights Reserved.
2+
* Copyright (c) 2020-2023 VMware, Inc. or its affiliates, All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -67,8 +67,8 @@ public interface AccessLogArgProvider {
6767
* <p> Note that the {@link ConnectionInformation#remoteAddress()} will return the forwarded
6868
* remote client address if the server is configured in forwarded mode.
6969
*
70-
* @since 1.0.26
7170
* @return the connection info
71+
* @since 1.0.26
7272
* @see reactor.netty.http.server.HttpServer#forwarded(BiFunction)
7373
*/
7474
@Nullable

0 commit comments

Comments
 (0)