This is an automated email from the ASF dual-hosted git repository.
markt pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/9.0.x by this push:
new 0ce74752cb fix : fix typing
0ce74752cb is described below
commit 0ce74752cbb96980451163ba96183aac65a218e3
Author: minjund <[email protected]>
AuthorDate: Wed Oct 15 23:35:33 2025 +0900
fix : fix typing
configureDatagraChannel to configureDatagramChannel method
---
java/org/apache/catalina/tribes/transport/nio/NioReceiver.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/java/org/apache/catalina/tribes/transport/nio/NioReceiver.java
b/java/org/apache/catalina/tribes/transport/nio/NioReceiver.java
index 9750b1a558..4571112074 100644
--- a/java/org/apache/catalina/tribes/transport/nio/NioReceiver.java
+++ b/java/org/apache/catalina/tribes/transport/nio/NioReceiver.java
@@ -128,13 +128,13 @@ public class NioReceiver extends ReceiverBase implements
Runnable, NioReceiverMB
// set up the datagram channel
if (this.getUdpPort() > 0) {
datagramChannel = DatagramChannel.open();
- configureDatagraChannel();
+ configureDatagramChannel();
// bind to the address to avoid security checks
bindUdp(datagramChannel.socket(), getUdpPort(), getAutoBind());
}
}
- private void configureDatagraChannel() throws IOException {
+ private void configureDatagramChannel() throws IOException {
datagramChannel.configureBlocking(false);
datagramChannel.socket().setSendBufferSize(getUdpTxBufSize());
datagramChannel.socket().setReceiveBufferSize(getUdpRxBufSize());
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]