Skip to content

Commit

Permalink
revert again
Browse files Browse the repository at this point in the history
  • Loading branch information
jdries committed May 26, 2023
1 parent d369c97 commit 318372d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openeo_driver/ProcessGraphDeserializer.py
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ def convert_node(processGraph: Union[dict, list], env: EvalEnv = None):
if isinstance(processGraph, dict):
if 'process_id' in processGraph:
process_id = processGraph['process_id']
caching_flag = smart_bool(env.get("node_caching", False)) and process_id != "load_collection"
caching_flag = smart_bool(env.get("node_caching", True)) and process_id != "load_collection"
cached = None
if caching_flag and "result_cache" in processGraph:
cached = processGraph["result_cache"]
Expand Down

0 comments on commit 318372d

Please sign in to comment.