dnanexus / wdlTools

WDL tools for parsing, type-checking, and more
Apache License 2.0
25 stars 7 forks source link

APPS-873 do not follow aliases forever #184

Closed jdidion closed 3 years ago

jdidion commented 3 years ago

In wdlTools.eval.Runtime, aliases is a SymmetricBiMap so both keys and values are checked on a call to contains. For container (which has alias docker), this causes an infinite loop and eventually a StackOverflowError. This PR adds an optional parameter followAlias which is set to false on any recursive calls.