We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a87fb8b commit 686e9d7Copy full SHA for 686e9d7
src/ExchangeSharp/API/Exchanges/Bitflyer/ExchangeBitflyerApi.cs
@@ -150,7 +150,8 @@ public SocketIOWrapper(string url)
150
}
151
152
public TimeSpan ConnectInterval
153
- { get => socketIO.Options.ConnectionTimeout; set => socketIO.Options.ConnectionTimeout = value; }
+ { get => throw new NotSupportedException();
154
+ set => socketIO.Options.Reconnection = value > TimeSpan.Zero; }
155
156
public TimeSpan KeepAlive
157
{ get => throw new NotSupportedException(); set => throw new NotSupportedException(); }
0 commit comments