Jake
07/07/2022, 10:14 PM.run()
on the flow that gets returned works fine, and registering the flow seems to be fine too (using k8s run). However, when we try to actually run it, we get the following error:
Failed to load and execute flow run: FlowStorageError('An error occurred while unpickling the flow:\n ModuleNotFoundError("No module named \'build_index\'")\nThis may be due to a missing Python module in your current environment. Please ensure you have all required flow dependencies installed.')
Am I missing something obvious?Kevin Kho
build_index
? I don’t know where that is fromJake
07/07/2022, 10:21 PMflow = make_into_flow(flow_name, build_index_from_cache
from directory.build_index import build_index_from_cache
Kevin Kho
Jake
07/07/2022, 10:26 PMKevin Kho