Created
August 12, 2014 20:18
-
-
Save trygveaa/2dc6a19bffaf180638ec to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Traceback (most recent call last): | |
File "/home/trygve/programming/mopidy/mopidy/utils/network.py", line 92, in handle_connection | |
sock, addr = self.accept_connection() | |
File "/home/trygve/programming/mopidy/mopidy/utils/network.py", line 104, in accept_connection | |
return self.server_socket.accept() | |
File "/usr/lib64/python2.7/socket.py", line 203, in accept | |
return _socketobject(_sock=sock), addr | |
File "/usr/lib64/python2.7/socket.py", line 189, in __init__ | |
for method in _delegate_methods: | |
KeyboardInterrupt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Traceback (most recent call last): | |
File "/home/trygve/programming/mopidy/mopidy/utils/network.py", line 99, in handle_connection | |
self.init_connection(sock, addr) | |
File "/home/trygve/programming/mopidy/mopidy/utils/network.py", line 127, in init_connection | |
self.protocol, self.protocol_kwargs, sock, addr, self.timeout) | |
File "/home/trygve/programming/mopidy/mopidy/utils/network.py", line 158, in __init__ | |
self.actor_ref = self.protocol.start(self, **self.protocol_kwargs) | |
File "/usr/lib/python2.7/site-packages/pykka/actor.py", line 93, in start | |
obj = cls(*args, **kwargs) | |
File "/home/trygve/programming/mopidy/mopidy/mpd/session.py", line 24, in __init__ | |
session=self, config=config, core=core) | |
File "/home/trygve/programming/mopidy/mopidy/mpd/dispatcher.py", line 32, in __init__ | |
self, session=session, config=config, core=core) | |
File "/home/trygve/programming/mopidy/mopidy/mpd/dispatcher.py", line 243, in __init__ | |
self.refresh_playlists_mapping() | |
File "/home/trygve/programming/mopidy/mopidy/mpd/dispatcher.py", line 268, in refresh_playlists_mapping | |
for playlist in self.core.playlists.playlists.get(): | |
File "/usr/lib/python2.7/site-packages/pykka/future.py", line 293, in get | |
self._data = self._queue.get(True, timeout) | |
File "/usr/lib64/python2.7/Queue.py", line 168, in get | |
self.not_empty.wait() | |
File "/usr/lib64/python2.7/threading.py", line 339, in wait | |
waiter.acquire() | |
KeyboardInterrupt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Traceback (most recent call last): | |
File "/home/trygve/programming/mopidy/mopidy/utils/network.py", line 99, in handle_connection | |
self.init_connection(sock, addr) | |
File "/home/trygve/programming/mopidy/mopidy/utils/network.py", line 127, in init_connection | |
self.protocol, self.protocol_kwargs, sock, addr, self.timeout) | |
File "/home/trygve/programming/mopidy/mopidy/utils/network.py", line 158, in __init__ | |
self.actor_ref = self.protocol.start(self, **self.protocol_kwargs) | |
File "/usr/lib/python2.7/site-packages/pykka/actor.py", line 99, in start | |
obj._start_actor_loop() | |
File "/usr/lib/python2.7/site-packages/pykka/actor.py", line 367, in _start_actor_loop | |
thread.start() | |
File "/usr/lib64/python2.7/threading.py", line 750, in start | |
self.__started.wait() | |
File "/usr/lib64/python2.7/threading.py", line 620, in wait | |
self.__cond.wait(timeout) | |
File "/usr/lib64/python2.7/threading.py", line 339, in wait | |
waiter.acquire() | |
KeyboardInterrupt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Traceback (most recent call last): | |
File "/home/trygve/programming/mopidy/mopidy/utils/network.py", line 99, in handle_connection | |
self.init_connection(sock, addr) | |
File "/home/trygve/programming/mopidy/mopidy/utils/network.py", line 127, in init_connection | |
self.protocol, self.protocol_kwargs, sock, addr, self.timeout) | |
File "/home/trygve/programming/mopidy/mopidy/utils/network.py", line 158, in __init__ | |
self.actor_ref = self.protocol.start(self, **self.protocol_kwargs) | |
File "/usr/lib/python2.7/site-packages/pykka/actor.py", line 93, in start | |
obj = cls(*args, **kwargs) | |
File "/home/trygve/programming/mopidy/mopidy/mpd/session.py", line 24, in __init__ | |
session=self, config=config, core=core) | |
File "/home/trygve/programming/mopidy/mopidy/mpd/dispatcher.py", line 32, in __init__ | |
self, session=session, config=config, core=core) | |
File "/home/trygve/programming/mopidy/mopidy/mpd/dispatcher.py", line 243, in __init__ | |
self.refresh_playlists_mapping() | |
File "/home/trygve/programming/mopidy/mopidy/mpd/dispatcher.py", line 268, in refresh_playlists_mapping | |
for playlist in self.core.playlists.playlists.get(): | |
File "/usr/lib/python2.7/site-packages/pykka/proxy.py", line 177, in __getattr__ | |
return self.actor_ref.ask(message, block=False) | |
File "/usr/lib/python2.7/site-packages/pykka/actor.py", line 467, in ask | |
future = self.actor_class._create_future() | |
File "/usr/lib/python2.7/site-packages/pykka/actor.py", line 361, in _create_future | |
return _ThreadingFuture() | |
File "/usr/lib/python2.7/site-packages/pykka/future.py", line 282, in __init__ | |
self._queue = _queue.Queue(maxsize=1) | |
File "/usr/lib64/python2.7/Queue.py", line 42, in __init__ | |
self.all_tasks_done = _threading.Condition(self.mutex) | |
File "/usr/lib64/python2.7/threading.py", line 252, in Condition | |
return _Condition(*args, **kwargs) | |
KeyboardInterrupt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Traceback (most recent call last): | |
File "/home/trygve/programming/mopidy/mopidy/utils/network.py", line 92, in handle_connection | |
sock, addr = self.accept_connection() | |
File "/home/trygve/programming/mopidy/mopidy/utils/network.py", line 104, in accept_connection | |
return self.server_socket.accept() | |
File "/usr/lib64/python2.7/socket.py", line 201, in accept | |
def accept(self): | |
KeyboardInterrupt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Traceback (most recent call last): | |
File "/home/trygve/programming/mopidy/mopidy/utils/network.py", line 96, in handle_connection | |
if self.maximum_connections_exceeded(): | |
File "/home/trygve/programming/mopidy/mopidy/utils/network.py", line 112, in maximum_connections_exceeded | |
self.number_of_connections() >= self.max_connections) | |
File "/home/trygve/programming/mopidy/mopidy/utils/network.py", line 115, in number_of_connections | |
return len(pykka.ActorRegistry.get_by_class(self.protocol)) | |
File "/usr/lib/python2.7/site-packages/pykka/registry.py", line 67, in get_by_class | |
with cls._actor_refs_lock: | |
File "/usr/lib64/python2.7/threading.py", line 178, in acquire | |
self._note("%s.acquire(%s): initial success", self, blocking) | |
File "/usr/lib64/python2.7/threading.py", line 63, in _note | |
def _note(self, format, *args): | |
KeyboardInterrupt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment