Advertisement
Guest User

Untitled

a guest
Apr 28th, 2019
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. 2019/04/23 18:16:59: Had a problem saving a JSON object. The dump has been printed to the log.
  2. 2019/04/23 18:17:00: Exception in thread subscription thread:
  3. Traceback (most recent call last):
  4. File "threading.py", line 916, in _bootstrap_inner
  5. File "threading.py", line 864, in run
  6. File "include\ClientDaemons.py", line 340, in Work
  7. self._DoWork()
  8. File "include\ClientDaemons.py", line 328, in _DoWork
  9. subscription.Sync()
  10. File "include\ClientImportSubscriptions.py", line 1359, in Sync
  11. HG.client_controller.WriteSynchronous( 'serialisable', self )
  12. File "include\HydrusController.py", line 778, in WriteSynchronous
  13. return self._Write( action, True, *args, **kwargs )
  14. File "include\HydrusController.py", line 219, in _Write
  15. result = self.db.Write( action, synchronous, *args, **kwargs )
  16. File "include\HydrusDB.py", line 957, in Write
  17. if synchronous: return job.GetResult()
  18. File "include\HydrusData.py", line 1582, in GetResult
  19. raise e
  20. include.HydrusExceptions.DBException: InterfaceError: Error binding parameter 4 - probably unsupported type.
  21.  
  22. Database Traceback (most recent call last):
  23. File "include\HydrusDB.py", line 561, in _ProcessJob
  24. result = self._Write( action, *args, **kwargs )
  25. File "include\ClientDB.py", line 12869, in _Write
  26. elif action == 'serialisable': self._SetJSONDump( *args, **kwargs )
  27. File "include\ClientDB.py", line 10022, in _SetJSONDump
  28. self._c.execute( 'INSERT INTO json_dumps_named ( dump_type, dump_name, version, timestamp, dump ) VALUES ( ?, ?, ?, ?, ? );', ( dump_type, dump_name, version, HydrusData.GetNow(), dump_buffer ) )
  29. sqlite3.InterfaceError: Error binding parameter 4 - probably unsupported type.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement