File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
src/WebJobs.Script.WebHost Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 14
14
using Microsoft . Extensions . DependencyInjection ;
15
15
using Microsoft . Extensions . DependencyInjection . Extensions ;
16
16
using Microsoft . Extensions . Logging ;
17
+ using Newtonsoft . Json ;
17
18
using DataProtectionConstants = Microsoft . Azure . Web . DataProtection . Constants ;
18
19
19
20
namespace Microsoft . Azure . WebJobs . Script . WebHost
@@ -102,6 +103,8 @@ private static void InitializeProcess()
102
103
SystemEnvironment . Instance . SetEnvironmentVariable ( DataProtectionConstants . AzureWebsiteEnvironmentMachineKey , authEncryptionKey ) ;
103
104
}
104
105
106
+ JsonConvert . DefaultSettings = ( ) => new JsonSerializerSettings { MaxDepth = 128 } ;
107
+
105
108
ConfigureMinimumThreads ( SystemEnvironment . Instance ) ;
106
109
}
107
110
You can’t perform that action at this time.
0 commit comments