This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/main by this push:
     new 70f5339d8d fix : fix typing
70f5339d8d is described below

commit 70f5339d8dc23c2ecaaa321d825b00e187e8c18b
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]

Reply via email to