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 a628f1f commit 665f8e9Copy full SHA for 665f8e9
src/Unleash/Streaming/StreamingFeatureFetcher.cs
@@ -37,7 +37,12 @@ public async Task StartAsync()
37
{
38
try
39
40
- await ApiClient.StartStreamingAsync(Settings.UnleashApi, this).ConfigureAwait(false);
+ var uri = Settings.UnleashApi;
41
+ if (!uri.AbsolutePath.EndsWith("/"))
42
+ {
43
+ uri = new Uri($"{uri.AbsoluteUri}/");
44
+ }
45
+ await ApiClient.StartStreamingAsync(uri, this).ConfigureAwait(false);
46
}
47
catch (Exception ex)
48
0 commit comments