You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The result of the task can be added to the cache, but CallCache.get() always sees it as a cache miss, because the deserialized {} output JSON is a falsy empty dict.
I'm trying to plug Toil into MiniWDL's call caching, so I tried a simple workflow that runs a task with no outputs:
The result of the task can be added to the cache, but
CallCache.get()
always sees it as a cache miss, because the deserialized{}
output JSON is a falsy empty dict.miniwdl/WDL/runtime/cache.py
Line 106 in 475dd3f
Probably the condition should have an
is not None
.The text was updated successfully, but these errors were encountered: