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 87c283b commit 4f08b06Copy full SHA for 4f08b06
workers/tests/utils/testutils_lc.py
@@ -255,6 +255,8 @@ def spawn_container(self,
255
# Add required environment variables for JWT issuer validation
256
run_cmd.extend(["-e", f"WEBSITE_SITE_NAME={self._uuid}"])
257
run_cmd.extend(["-e", "WEBSITE_SKU=Dynamic"])
258
+ storage = os.getenv('AzureWebJobsStorage')
259
+ run_cmd.extend(["-e", f"AzureWebJobsStorage={storage}"])
260
# run_cmd.extend(["-v", f'{worker_path}:{container_worker_path}'])
261
# run_cmd.extend(["-v",
262
# f'{base_ext_local_path}:{base_ext_container_path}'])
0 commit comments