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
As previously reported in akhudek/zip-visit#8 PuppetDB crashes when fast-zip is upgraded to 0.7.0. In fact, the trouble actually started with the use of .next in core.cljc in 0.6.0.
That's because PuppetDB has long extended zip (via puppetlabs.puppetdb.zip) to preserve collection types in some cases, e.g. vectors remain vectors. As a result, the .next in core/down encounters a vector instead of a sequence, and crashes. If it would be acceptable, changing the three uses of .next to clojure.core/next would resolve the issue.
In any case, thanks for providing the library.
The text was updated successfully, but these errors were encountered:
As previously reported in akhudek/zip-visit#8 PuppetDB crashes when fast-zip is upgraded to 0.7.0. In fact, the trouble actually started with the use of
.next
in core.cljc in 0.6.0.That's because PuppetDB has long extended zip (via
puppetlabs.puppetdb.zip
) to preserve collection types in some cases, e.g. vectors remain vectors. As a result, the.next
incore/down
encounters a vector instead of a sequence, and crashes. If it would be acceptable, changing the three uses of.next
toclojure.core/next
would resolve the issue.In any case, thanks for providing the library.
The text was updated successfully, but these errors were encountered: