Hi, is there an equivalent of `execute_in_process(...
# ask-community
c
Hi, is there an equivalent of
execute_in_process(run_config:{...})
for executors? I would like to pass my execution config dynamically depending on the output of another op.
Copy code
execution:
  config:
    registry: ...
    network: ...
    networks: ...
    container_kwargs: ...
🤖 1
Copy code
handle_notebook.execute_in_process(
        execution={"config": ...}}},
)
Something like this
s
Mind explaining what you're trying to accomplish in a little more detail? You should be able to provide config for your executor when you specify run_config with
execute_in_process
, but, in general, there's no way to change config in the middle of a run
c
I was misunderstanding something all good got help from Daniel