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 b5b2a16 commit 944a09cCopy full SHA for 944a09c
src/WebJobs.Script/Host/ScriptHostManager.cs
@@ -54,6 +54,11 @@ public ScriptHost Instance
54
{
55
IsRunning = false;
56
57
+ // Create a new host config, but keep the host id from existing one
58
+ _config.HostConfig = new JobHostConfiguration
59
+ {
60
+ HostId = _config.HostConfig.HostId
61
+ };
62
ScriptHost newInstance = ScriptHost.Create(_config);
63
64
// TODO: consider using StartAsync here to speed up
0 commit comments