Advertisement
Saur2000

Untitled

Feb 21st, 2024
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.59 KB | None | 0 0
  1. This is from bitbake:
  2.  
  3. ERROR: An uncaught exception occurred in runqueue
  4. Traceback (most recent call last):
  5. File "/home/pkj/dists/cfp-master/poky/bitbake/lib/hashserv/__init__.py", line 104, in create_client(addr='unix:///home/pkj/dists/cfp-master/builds/m4228/hashserve.sock', username=None, password=None):
  6. bb.warn(f"create_client: {a}")
  7. > c.connect_unix(*a)
  8. elif typ == ADDR_TYPE_WS:
  9. File "/home/pkj/dists/cfp-master/poky/bitbake/lib/bb/asyncrpc/client.py", line 158, in Client.connect_unix(path='/home/pkj/dists/cfp-master/builds/m4228/hashserve.sock'):
  10. self.loop.run_until_complete(self.client.connect_unix(path))
  11. > self.loop.run_until_complete(self.client.connect())
  12.  
  13. File "/usr/lib64/python3.10/asyncio/base_events.py", line 649, in _UnixSelectorEventLoop.run_until_complete(future=<Task finished name='Task-2' coro=<AsyncClient.connect() done, defined at /home/pkj/dists/cfp-master/poky/bitbake/lib/bb/asyncrpc/client.py:67> exception=ConnectionRefusedError(111, 'Connection refused')>):
  14.  
  15. > return future.result()
  16.  
  17. File "/home/pkj/dists/cfp-master/poky/bitbake/lib/bb/asyncrpc/client.py", line 69, in AsyncClient.connect():
  18. if self.socket is None:
  19. > self.socket = await self._connect_sock()
  20. await self.setup_connection()
  21. File "/home/pkj/dists/cfp-master/poky/bitbake/lib/bb/asyncrpc/client.py", line 44, in connect_sock:
  22. sock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM, 0)
  23. > sock.connect(os.path.basename(path))
  24. finally:
  25. ConnectionRefusedError: [Errno 111] Connection refused
  26.  
  27.  
  28. The above, totally unhelpful error, is actually caused by this, which is found in bitbake-cookerdaemon.log:
  29.  
  30.  
  31. Traceback (most recent call last):
  32. File "/usr/lib64/python3.10/multiprocessing/process.py", line 314, in _bootstrap
  33. self.run()
  34. File "/usr/lib64/python3.10/multiprocessing/process.py", line 108, in run
  35. self._target(*self._args, **self._kwargs)
  36. File "/home/pkj/dists/cfp-master/poky/bitbake/lib/bb/asyncrpc/serv.py", line 345, in run
  37. tasks = self.start()
  38. File "/home/pkj/dists/cfp-master/poky/bitbake/lib/hashserv/server.py", line 871, in start
  39. self.loop.run_until_complete(self.db_engine.create())
  40. File "/usr/lib64/python3.10/asyncio/base_events.py", line 649, in run_until_complete
  41. return future.result()
  42. File "/home/pkj/dists/cfp-master/poky/bitbake/lib/hashserv/sqlite.py", line 164, in create
  43. cursor.execute(
  44. sqlite3.IntegrityError: UNIQUE constraint failed: unihashes_v3.id
  45.  
  46.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement