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 d7a0701 commit c7458a7Copy full SHA for c7458a7
SwanSpawner/swanspawner/swanspawner.py
@@ -284,7 +284,7 @@ async def poll(self):
284
if exit_return_code.isdigit():
285
value_cleaned = exit_return_code
286
else:
287
- result = re.search('ExitCode=(\d+)', exit_return_code)
+ result = re.search(r'ExitCode=(\d+)', exit_return_code)
288
if not result:
289
raise Exception("unknown exit code format for this Spawner")
290
value_cleaned = result.group(1)
0 commit comments