Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 77ad8a2

Browse filesBrowse files
committed
Change to localhost http
1 parent 3ea304e commit 77ad8a2
Copy full SHA for 77ad8a2

File tree

15 files changed

+19
-19
lines changed
Filter options

15 files changed

+19
-19
lines changed

‎samples/Exceptionless.SampleAspNetCore/appsettings.json

Copy file name to clipboardExpand all lines: samples/Exceptionless.SampleAspNetCore/appsettings.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"Exceptionless": {
33
"ApiKey": "LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest",
4-
"ServerUrl": "https://localhost:5201",
4+
"ServerUrl": "http://localhost:5200",
55
"DefaultData": {
66
"JSON_OBJECT": "{ \"Name\": \"Blake\" }",
77
"Boolean": true,

‎samples/Exceptionless.SampleBlazorWebAssemblyApp/Program.cs

Copy file name to clipboardExpand all lines: samples/Exceptionless.SampleBlazorWebAssemblyApp/Program.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using Microsoft.AspNetCore.Components.Web;
44
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
55

6-
ExceptionlessClient.Default.Configuration.ServerUrl = "https://localhost:5201";
6+
ExceptionlessClient.Default.Configuration.ServerUrl = "http://localhost:5200";
77
ExceptionlessClient.Default.Startup("LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest");
88

99
var builder = WebAssemblyHostBuilder.CreateDefault(args);

‎samples/Exceptionless.SampleConsole/Program.cs

Copy file name to clipboardExpand all lines: samples/Exceptionless.SampleConsole/Program.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
using LogLevel = Exceptionless.Logging.LogLevel;
1818

1919
// example of setting an attribute value in config.
20-
[assembly: Exceptionless("LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest", ServerUrl = "https://localhost:5201")]
20+
[assembly: Exceptionless("LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest", ServerUrl = "http://localhost:5200")]
2121
[assembly: ExceptionlessSetting("EnableWelcomeMessage", "True")]
2222

2323
namespace Exceptionless.SampleConsole {

‎samples/Exceptionless.SampleHosting/appsettings.json

Copy file name to clipboardExpand all lines: samples/Exceptionless.SampleHosting/appsettings.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"Exceptionless": {
33
"ApiKey": "LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest",
4-
"ServerUrl": "https://localhost:5201",
4+
"ServerUrl": "http://localhost:5200",
55
"DefaultData": {
66
"JSON_OBJECT": "{ \"Name\": \"Blake\" }",
77
"Boolean": true,

‎samples/Exceptionless.SampleLambda/Function.cs

Copy file name to clipboardExpand all lines: samples/Exceptionless.SampleLambda/Function.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public async Task<string> FunctionHandler(string input, ILambdaContext context)
1212
{
1313
var client = new ExceptionlessClient(c => {
1414
c.ApiKey = "LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest";
15-
c.ServerUrl = "https://localhost:5201";
15+
c.ServerUrl = "http://localhost:5200";
1616

1717
// read configuration values from environment variables
1818
c.ReadFromEnvironmentalVariables();

‎samples/Exceptionless.SampleLambdaAspNetCore/appsettings.json

Copy file name to clipboardExpand all lines: samples/Exceptionless.SampleLambdaAspNetCore/appsettings.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"Exceptionless": {
33
"ApiKey": "LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest",
4-
"ServerUrl": "https://localhost:5201",
4+
"ServerUrl": "http://localhost:5200",
55
"ProcessQueueOnCompletedRequest": true,
66
"DefaultData": {
77
"JSON_OBJECT": "{ \"Name\": \"Blake\" }",

‎samples/Exceptionless.SampleMvc/Web.config

Copy file name to clipboardExpand all lines: samples/Exceptionless.SampleMvc/Web.config
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<configuration>
33
<appSettings>
44
<add key="Exceptionless:ApiKey" value="LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest" />
5-
<add key="Exceptionless:ServerUrl" value="https://localhost:5201" />
5+
<add key="Exceptionless:ServerUrl" value="http://localhost:5200" />
66
<add key="webpages:Version" value="3.0.0.0" />
77
<add key="webpages:Enabled" value="false" />
88
<add key="ClientValidationEnabled" value="true" />

‎samples/Exceptionless.SampleWcf/Web.config

Copy file name to clipboardExpand all lines: samples/Exceptionless.SampleWcf/Web.config
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<section name="exceptionless" type="Exceptionless.ExceptionlessSection, Exceptionless"/>
55
</configSections>
66

7-
<exceptionless apiKey="LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest" serverUrl="https://localhost:5201">
7+
<exceptionless apiKey="LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest" serverUrl="http://localhost:5200">
88
<settings>
99
<add name="TraceLogLimit" value="25"/>
1010
</settings>

‎samples/Exceptionless.SampleWeb/Web.config

Copy file name to clipboardExpand all lines: samples/Exceptionless.SampleWeb/Web.config
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<configSections>
44
<section name="exceptionless" type="Exceptionless.ExceptionlessSection, Exceptionless" requirePermission="false"/>
55
</configSections>
6-
<exceptionless apiKey="LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest" serverUrl="https://localhost:5201" tags="Tag1,Tag2">
7-
<!--<exceptionless apiKey="LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest" serverUrl="https://localhost:5201" tags="Tag1,Tag2"
6+
<exceptionless apiKey="LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest" serverUrl="http://localhost:5200" tags="Tag1,Tag2">
7+
<!--<exceptionless apiKey="LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest" serverUrl="http://localhost:5200" tags="Tag1,Tag2"
88
storageSerializer="Exceptionless.MessagePack.MessagePackStorageSerializer, Exceptionless.MessagePack"
99
storagePath="|DataDirectory|\Logs">-->
1010
<settings>

‎samples/Exceptionless.SampleWebApi/App.config

Copy file name to clipboardExpand all lines: samples/Exceptionless.SampleWebApi/App.config
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<configSections>
44
<section name="exceptionless" type="Exceptionless.ExceptionlessSection, Exceptionless" />
55
</configSections>
6-
<exceptionless apiKey="LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest" serverUrl="https://localhost:5201" storagePath="|DataDirectory|\Queue">
6+
<exceptionless apiKey="LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest" serverUrl="http://localhost:5200" storagePath="|DataDirectory|\Queue">
77
<settings>
88
<add name="TraceLogLimit" value="30" />
99
</settings>

‎samples/Exceptionless.SampleWindows/App.config

Copy file name to clipboardExpand all lines: samples/Exceptionless.SampleWindows/App.config
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<section name="exceptionless" type="Exceptionless.ExceptionlessSection, Exceptionless"/>
55
</configSections>
66

7-
<exceptionless apiKey="LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest" serverUrl="https://localhost:5201"/>
7+
<exceptionless apiKey="LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest" serverUrl="http://localhost:5200"/>
88

99
<system.diagnostics>
1010
<trace autoflush="true">

‎samples/Exceptionless.SampleWindows/Program.cs

Copy file name to clipboardExpand all lines: samples/Exceptionless.SampleWindows/Program.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Windows.Forms;
44
using Exceptionless.Configuration;
55

6-
[assembly: Exceptionless("LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest", ServerUrl = "https://localhost:5201")]
6+
[assembly: Exceptionless("LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest", ServerUrl = "http://localhost:5200")]
77

88
namespace Exceptionless.SampleWindows {
99
internal static class Program {

‎samples/Exceptionless.SampleWpf/Properties/AssemblyInfo.cs

Copy file name to clipboardExpand all lines: samples/Exceptionless.SampleWpf/Properties/AssemblyInfo.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
using Exceptionless.Configuration;
33

44
[assembly: ThemeInfo(ResourceDictionaryLocation.None, ResourceDictionaryLocation.SourceAssembly)]
5-
[assembly: Exceptionless("LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest", ServerUrl = "https://localhost:5201")]
5+
[assembly: Exceptionless("LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest", ServerUrl = "http://localhost:5200")]

‎test/Exceptionless.Tests/Configuration/ConfigurationTests.cs

Copy file name to clipboardExpand all lines: test/Exceptionless.Tests/Configuration/ConfigurationTests.cs
+4-4Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
using Xunit;
1616
using Xunit.Abstractions;
1717

18-
[assembly: Exceptionless("LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest", ServerUrl = "https://localhost:5201")]
18+
[assembly: Exceptionless("LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest", ServerUrl = "http://localhost:5200")]
1919
[assembly: ExceptionlessSetting("testing", "configuration")]
2020
namespace Exceptionless.Tests.Configuration {
2121
public class ConfigurationTests {
@@ -65,13 +65,13 @@ public void CanConfigureClientUsingActionMethod() {
6565

6666
var client = new ExceptionlessClient(c => {
6767
c.ApiKey = "LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest";
68-
c.ServerUrl = "https://localhost:5201";
68+
c.ServerUrl = "http://localhost:5200";
6969
c.SetVersion(version);
7070
c.IncludeUserName = false;
7171
});
7272

7373
Assert.Equal("LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest", client.Configuration.ApiKey);
74-
Assert.Equal("https://localhost:5201", client.Configuration.ServerUrl);
74+
Assert.Equal("http://localhost:5200", client.Configuration.ServerUrl);
7575
Assert.Equal(version, client.Configuration.DefaultData[Event.KnownDataKeys.Version].ToString());
7676

7777
Assert.True(client.Configuration.IncludePrivateInformation);
@@ -92,7 +92,7 @@ public void CanReadFromAttributes() {
9292

9393
config.ReadFromAttributes(typeof(ConfigurationTests).GetTypeInfo().Assembly);
9494
Assert.Equal("LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest", config.ApiKey);
95-
Assert.Equal("https://localhost:5201", config.ServerUrl);
95+
Assert.Equal("http://localhost:5200", config.ServerUrl);
9696
Assert.Single(config.Settings);
9797
Assert.Equal("configuration", config.Settings["testing"]);
9898
}

‎test/Exceptionless.Tests/app.config

Copy file name to clipboardExpand all lines: test/Exceptionless.Tests/app.config
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<section name="exceptionless" type="Exceptionless.ExceptionlessSection, Exceptionless" />
55
</configSections>
66

7-
<exceptionless apiKey="LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest" serverUrl="https://localhost:5201" enabled="true">
7+
<exceptionless apiKey="LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest" serverUrl="http://localhost:5200" enabled="true">
88
<settings>
99
<add name="TraceLogLimit" value="30" />
1010
</settings>

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.