Advertisement
Guest User

Untitled

a guest
Aug 26th, 2021
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. bitbake$ bitbake-hashserv -l DEBUG -b localhost:0
  2. start_tcp handle_client <bound method AsyncServer.handle_client of <hashserv.server.Server object at 0x7f85fefdc5b0>>, host localhost, port 0
  3. server_coro <coroutine object start_server at 0x7f85fed408c0>
  4. Traceback (most recent call last):
  5. File "/OE/nodistro/honister/bitbake/lib/bb/asyncrpc/serv.py", line 148, in start_tcp
  6. self.server = self.loop.run_until_complete(server_coro)
  7. File "/usr/lib/python3.8/asyncio/base_events.py", line 616, in run_until_complete
  8. return future.result()
  9. File "/usr/lib/python3.8/asyncio/streams.py", line 94, in start_server
  10. return await loop.create_server(factory, host, port, **kwds)
  11. File "/usr/lib/python3.8/asyncio/base_events.py", line 1463, in create_server
  12. raise OSError(err.errno, 'error while attempting '
  13. OSError: [Errno 99] error while attempting to bind on address ('::1', 0, 0, 0): cannot assign requested address
  14.  
  15. During handling of the above exception, another exception occurred:
  16.  
  17. Traceback (most recent call last):
  18. File "/OE/nodistro/honister/bitbake/bin/bitbake-hashserv", line 59, in <module>
  19. ret = main()
  20. File "/OE/nodistro/honister/bitbake/bin/bitbake-hashserv", line 53, in main
  21. server.serve_forever()
  22. File "/OE/nodistro/honister/bitbake/lib/bb/asyncrpc/serv.py", line 245, in serve_forever
  23. self.start()
  24. File "/OE/nodistro/honister/bitbake/lib/bb/asyncrpc/serv.py", line 151, in start_tcp
  25. except Error as e:
  26. NameError: name 'Error' is not defined
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement