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

tabish pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-protonj2.git

commit aefdefc7762609633a407f2809512f8c55b3f1d6
Author: Timothy Bish <tabish...@gmail.com>
AuthorDate: Wed Jun 16 18:04:16 2021 -0400

    PROTON-2394 Fix some spelling errors in configuration constants
---
 .../java/org/apache/qpid/protonj2/client/ReconnectOptions.java    | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/protonj2-client/src/main/java/org/apache/qpid/protonj2/client/ReconnectOptions.java
 
b/protonj2-client/src/main/java/org/apache/qpid/protonj2/client/ReconnectOptions.java
index 1896bbe..b21edf4 100644
--- 
a/protonj2-client/src/main/java/org/apache/qpid/protonj2/client/ReconnectOptions.java
+++ 
b/protonj2-client/src/main/java/org/apache/qpid/protonj2/client/ReconnectOptions.java
@@ -28,8 +28,8 @@ public class ReconnectOptions {
     public static final boolean DEFAULT_RECONNECT_ENABLED = false;
     public static final int INFINITE = -1;
     public static final int DEFAULT_WARN_AFTER_RECONNECT_ATTEMPTS = 10;
-    public static final int DEFAULT_RECONNECT_DEALY = 10;
-    public static final int DEFAULT_MAX_RECONNECT_DEALY = 30_000;
+    public static final int DEFAULT_RECONNECT_DELAY = 10;
+    public static final int DEFAULT_MAX_RECONNECT_DELAY = 30_000;
     public static final boolean DEFAULT_USE_RECONNECT_BACKOFF = true;
     public static final double DEFAULT_RECONNECT_BACKOFF_MULTIPLIER = 2.0d;
 
@@ -39,8 +39,8 @@ public class ReconnectOptions {
     private int warnAfterReconnectAttempts = 
DEFAULT_WARN_AFTER_RECONNECT_ATTEMPTS;
     private int maxInitialConnectionAttempts = INFINITE;
     private int maxReconnectAttempts = INFINITE;
-    private int reconnectDelay = DEFAULT_RECONNECT_DEALY;
-    private int maxReconnectDelay = DEFAULT_MAX_RECONNECT_DEALY;
+    private int reconnectDelay = DEFAULT_RECONNECT_DELAY;
+    private int maxReconnectDelay = DEFAULT_RECONNECT_DELAY;
     private boolean useReconnectBackOff = DEFAULT_USE_RECONNECT_BACKOFF;
     private double reconnectBackOffMultiplier = 
DEFAULT_RECONNECT_BACKOFF_MULTIPLIER;
 

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org

Reply via email to