Skip to content

Commit 73b42af

Browse files
committed
chore: refresh sample and test settings for endpoint updates
1 parent c1462e1 commit 73b42af

17 files changed

Lines changed: 26 additions & 21 deletions

File tree

.github/dependabot.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,9 @@ updates:
44
- package-ecosystem: nuget
55
directory: "/"
66
schedule:
7-
interval: weekly
7+
interval: weekly
8+
cooldown:
9+
default-days: 7
10+
semver-major-days: 7
11+
semver-minor-days: 7
12+
semver-patch-days: 7

samples/Exceptionless.SampleAspNetCore/appsettings.json

Lines 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": "http://localhost:5200",
4+
"ServerUrl": "https://ex.dev.localhost:7111",
55
"DefaultData": {
66
"JSON_OBJECT": "{ \"Name\": \"Blake\" }",
77
"Boolean": true,

samples/Exceptionless.SampleBlazorWebAssemblyApp/Program.cs

Lines 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 = "http://localhost:5200";
6+
ExceptionlessClient.Default.Configuration.ServerUrl = "https://ex.dev.localhost:7111";
77
ExceptionlessClient.Default.Startup("LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest");
88

99
var builder = WebAssemblyHostBuilder.CreateDefault(args);

samples/Exceptionless.SampleConsole/Program.cs

Lines 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 = "http://localhost:5200")]
20+
[assembly: Exceptionless("LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest", ServerUrl = "https://ex.dev.localhost:7111")]
2121
[assembly: ExceptionlessSetting("EnableWelcomeMessage", "True")]
2222

2323
namespace Exceptionless.SampleConsole {

samples/Exceptionless.SampleHosting/appsettings.json

Lines 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": "http://localhost:5200",
4+
"ServerUrl": "https://ex.dev.localhost:7111",
55
"DefaultData": {
66
"JSON_OBJECT": "{ \"Name\": \"Blake\" }",
77
"Boolean": true,

samples/Exceptionless.SampleLambda/Function.cs

Lines 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 = "http://localhost:5200";
15+
c.ServerUrl = "https://ex.dev.localhost:7111";
1616

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

samples/Exceptionless.SampleLambdaAspNetCore/appsettings.json

Lines 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": "http://localhost:5200",
4+
"ServerUrl": "https://ex.dev.localhost:7111",
55
"ProcessQueueOnCompletedRequest": true,
66
"DefaultData": {
77
"JSON_OBJECT": "{ \"Name\": \"Blake\" }",

samples/Exceptionless.SampleMvc/Web.config

Lines 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="http://localhost:5200" />
5+
<add key="Exceptionless:ServerUrl" value="https://ex.dev.localhost:7111" />
66
<add key="Exceptionless:DefaultTags" value="Tag1, Tag2" />
77
<add key="webpages:Version" value="3.0.0.0" />
88
<add key="webpages:Enabled" value="false" />

samples/Exceptionless.SampleWcf/Web.config

Lines 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="http://localhost:5200">
7+
<exceptionless apiKey="LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest" serverUrl="https://ex.dev.localhost:7111">
88
<settings>
99
<add name="TraceLogLimit" value="25"/>
1010
</settings>

samples/Exceptionless.SampleWeb/Web.config

Lines 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="http://localhost:5200" tags="Tag1,Tag2">
7-
<!--<exceptionless apiKey="LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest" serverUrl="http://localhost:5200" tags="Tag1,Tag2"
6+
<exceptionless apiKey="LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest" serverUrl="https://ex.dev.localhost:7111" tags="Tag1,Tag2">
7+
<!--<exceptionless apiKey="LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest" serverUrl="https://ex.dev.localhost:7111" tags="Tag1,Tag2"
88
storageSerializer="Exceptionless.MessagePack.MessagePackStorageSerializer, Exceptionless.MessagePack"
99
storagePath="|DataDirectory|\Logs">-->
1010
<settings>

0 commit comments

Comments
 (0)