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 19fae8c commit 85d7329Copy full SHA for 85d7329
src/SplunkLogger/Providers/SplunkHECRawLoggerProvider.cs
@@ -40,7 +40,7 @@ public SplunkHECRawLoggerProvider(SplunkLoggerConfiguration configuration, ILogg
40
if (!splunkCollectorUrl.EndsWith("/", StringComparison.InvariantCulture))
41
splunkCollectorUrl += "/";
42
43
- var baseAddress = new Uri(splunkCollectorUrl + "/raw?channel=" + Guid.NewGuid().ToString());
+ var baseAddress = new Uri(splunkCollectorUrl + "raw?channel=" + Guid.NewGuid().ToString());
44
httpClient.BaseAddress = baseAddress;
45
46
httpClient.Timeout = TimeSpan.FromMilliseconds(configuration.HecConfiguration.DefaultTimeoutInMiliseconds);
0 commit comments