1. 11 Dec, 2017 3 commits
  2. 05 Dec, 2017 2 commits
  3. 04 Dec, 2017 1 commit
  4. 21 Nov, 2017 1 commit
    • Julien Muchembled's avatar
      client: bug found, add log to collect more information · a1082cbc
      Julien Muchembled authored
      INFO Z2 Log files reopened successfully
      INFO SignalHandler Caught signal SIGTERM
      INFO Z2 Shutting down fast
      INFO ZServer closing HTTP to new connections
      ERROR ZODB.Connection Couldn't load state for BTrees.LOBTree.LOBucket 0xc12e29
      Traceback (most recent call last):
        File "ZODB/Connection.py", line 909, in setstate
          self._setstate(obj, oid)
        File "ZODB/Connection.py", line 953, in _setstate
          p, serial = self._storage.load(oid, '')
        File "neo/client/Storage.py", line 81, in load
          return self.app.load(oid)[:2]
        File "neo/client/app.py", line 355, in load
          data, tid, next_tid, _ = self._loadFromStorage(oid, tid, before_tid)
        File "neo/client/app.py", line 387, in _loadFromStorage
          askStorage)
        File "neo/client/app.py", line 297, in _askStorageForRead
          self.sync()
        File "neo/client/app.py", line 898, in sync
          self._askPrimary(Packets.Ping())
        File "neo/client/app.py", line 163, in _askPrimary
          return self._ask(self._getMasterConnection(), packet,
        File "neo/client/app.py", line 177, in _getMasterConnection
          result = self.master_conn = self._connectToPrimaryNode()
        File "neo/client/app.py", line 202, in _connectToPrimaryNode
          index = (index + 1) % len(master_list)
      ZeroDivisionError: integer division or modulo by zero
      a1082cbc
  5. 19 Nov, 2017 1 commit
  6. 17 Nov, 2017 4 commits
  7. 15 Nov, 2017 1 commit
  8. 07 Nov, 2017 2 commits
  9. 27 Oct, 2017 1 commit
  10. 29 Sep, 2017 3 commits
  11. 11 Sep, 2017 1 commit
  12. 05 Sep, 2017 1 commit
  13. 28 Aug, 2017 1 commit
  14. 11 Jul, 2017 1 commit
  15. 04 Jul, 2017 2 commits
  16. 30 Jun, 2017 1 commit
  17. 29 Jun, 2017 1 commit
  18. 16 Jun, 2017 1 commit
  19. 15 Jun, 2017 2 commits
  20. 14 Jun, 2017 1 commit
  21. 13 Jun, 2017 1 commit
  22. 12 Jun, 2017 7 commits
  23. 12 May, 2017 1 commit
    • Julien Muchembled's avatar
      Remove packet timeouts · f6eb02b4
      Julien Muchembled authored
      Since it's not worth anymore to keep track of the last connection activity
      (which, btw, ignored TCP ACKs, i.e. timeouts could theorically be triggered
      before all the data were actually sent), the semantics of closeClient has also
      changed. Before this commit, the 1-minute timeout was reset whenever there was
      activity (connection still used as server). Now, it happens exactly 100 seconds
      after the connection is not used anymore as client.
      f6eb02b4