Advertisement
Guest User

Untitled

a guest
Dec 12th, 2011
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. Working directory: /opt/noc
  2. <type 'exceptions.IOError'>
  3. CRC check failed 0x670b31f0 != 0x4b840aL
  4. START OF TRACEBACK
  5. ------------------------------------------------------------------------
  6. File: /usr/local/lib/python2.7/gzip.py (Line: 338)
  7. Function: _read_eof
  8. 331 # uncompressed data matches the stored values. Note that the size
  9. 332 # stored is the true file size mod 2**32.
  10. 333 self.fileobj.seek(-8, 1)
  11. 334 crc32 = read32(self.fileobj)
  12. 335 isize = read32(self.fileobj) # may exceed 2GB
  13. 336 if crc32 != self.crc:
  14. 337 raise IOError("CRC check failed %s != %s" % (hex(crc32),
  15. 338 ==> hex(self.crc)))
  16. 339 elif isize != (self.size & 0xffffffffL):
  17. 340 raise IOError, "Incorrect length of data produced"
  18. 341
  19. 342 # Gzip files can be padded with zeroes and still have archives.
  20. 343 # Consume all zero bytes and set the file position to the first
  21. 344 # non-zero byte. See http://www.gzip.org/#faq8
  22. Variables:
  23. crc32 = 1728786928
  24. self = <gzip cStringIO.StringI object at 0x803da9c00 0x803d974d0>
  25. isize = 779965824
  26.  
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement