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 7cfbc1d commit 5b66919Copy full SHA for 5b66919
src/WebJobs.Script.WebHost/Management/InstanceManager.cs
@@ -169,6 +169,12 @@ private async Task ApplyContext(HostAssignmentContext assignmentContext)
169
ZipFile.ExtractToDirectory(filePath, options.ScriptPath, overwriteFiles: true);
170
_logger.LogInformation($"Zip extraction complete");
171
}
172
+
173
+ string bundlePath = Path.Combine(options.ScriptPath, "worker-bundle");
174
+ if (Directory.Exists(bundlePath))
175
+ {
176
+ _logger.LogInformation($"Python worker bundle detected");
177
+ }
178
179
180
0 commit comments