Split act-runner into its own pod and offer as a distinct stack. #612

Merged
telackey merged 3 commits from telackey/ar into main 2023-10-27 18:57:14 +00:00
Showing only changes of commit d33bc8ab02 - Show all commits

View File

@ -121,7 +121,7 @@ def call_stack_deploy_init(deploy_command_context):
# Link with the python file in the stack
# Call a function in it
# If no function found, return None
python_file_paths = _commands_plugin_paths(deploy_command_context)
python_file_paths = _commands_plugin_paths(deploy_command_context)
ret = None
init_done = False
@ -135,7 +135,7 @@ def call_stack_deploy_init(deploy_command_context):
ret = imported_stack.init(deploy_command_context)
init_done = True
else:
#TODO: remove this restriction
# TODO: remove this restriction
print(f"Skipping init() from plugin {python_file_path}. Only one init() is allowed.")
return ret