You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// TODO: Customize subscriber connector properties as desired...
58
58
59
-
//// Enable auto-reconnect sequence:
60
-
connector.SetAutoReconnect(true);
59
+
// Enable auto-reconnect sequence:
60
+
//connector.SetAutoReconnect(true);
61
61
62
-
//// Set maximum number to attempt reconnection, -1 means never stop retrying connection attempts:
63
-
connector.SetMaxRetries(-1);
62
+
// Set maximum number to attempt reconnection, -1 means never stop retrying connection attempts:
63
+
//connector.SetMaxRetries(-1);
64
64
65
-
//// Set number of initial milliseconds to wait before retrying connection attempt:
66
-
connector.SetRetryInterval(5000);
65
+
// Set number of initial milliseconds to wait before retrying connection attempt:
66
+
//connector.SetRetryInterval(2000);
67
67
68
68
// Set maximum number of milliseconds to wait before retrying connection attempt, connection retry attempts use exponential back-off algorithm up to this defined maximum:
0 commit comments