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 __gz_handler() method has a dependency on zcat (Linux) whenever incomplete gz compressed data is parsed (which is quite often within actual AL events):
As a quick, interim solution, I can just skip over this part (sys.platform == 'win32') and return an unable to parse incomplete info in windows, but I would much prefer to be able to do the partial decompress directly within zlib (which I have attempted unsuccessfully several times).
The text was updated successfully, but these errors were encountered:
Partially addressed in 6a57200 though it is an interim fix.
Now it will return Currently only able to decompress data on linux... only. Most immediate fix would be to implement gzip.open() directly on the data rather than the file (this is because it references /tmp/ to write the files), while the permanent fix would be to use zlib. Will implement the temp fix soon
the
__gz_handler()
method has a dependency on zcat (Linux) whenever incomplete gz compressed data is parsed (which is quite often within actual AL events):As a quick, interim solution, I can just skip over this part (
sys.platform == 'win32'
) and return anunable to parse incomplete info in windows
, but I would much prefer to be able to do the partial decompress directly within zlib (which I have attempted unsuccessfully several times).The text was updated successfully, but these errors were encountered: