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 75d8e48 commit 6cf9678Copy full SHA for 6cf9678
appveyor.yml
@@ -35,5 +35,4 @@ artifacts:
35
- path: bin\Packages\*.nupkg
36
name: NuGet
37
hosts:
38
- api.nuget.org: 93.184.221.200
39
- dist.nuget.org: 93.184.221.200
+ api.nuget.org: 72.21.81.200
src/WebJobs.Script.Host/Program.cs
@@ -3,6 +3,7 @@
3
4
using System;
5
using Microsoft.Azure.WebJobs.Script.Config;
6
+using Newtonsoft.Json;
7
8
namespace Microsoft.Azure.WebJobs.Script.Host
9
{
@@ -27,6 +28,8 @@ public static void Main(string[] args)
27
28
IsSelfHost = true
29
};
30
31
+ JsonConvert.DefaultSettings = () => new JsonSerializerSettings { MaxDepth = 128 };
32
+
33
var scriptHostManager = new ScriptHostManager(config);
34
scriptHostManager.RunAndBlock();
}
0 commit comments