]> kaliko git repositories - mpd-sima.git/commitdiff
Revert "Catch uncaught socket.timeout (OSError subclass)."
authorkaliko <kaliko@azylum.org>
Fri, 28 Oct 2022 07:06:02 +0000 (09:06 +0200)
committerkaliko <kaliko@azylum.org>
Fri, 28 Oct 2022 07:06:02 +0000 (09:06 +0200)
This reverts commit 36db5e965f1e8dba54b42e31082709b914dd5194.

As mention in #63, this patch does not fixed the issue.

sima/mpdclient.py

index cced48c34e4df1f77ba1c962b4520246c6e43d5f..b50df91fca637f961f3335637ee06274094aa25a 100644 (file)
@@ -189,13 +189,7 @@ class MPD(MPDClient):
             self.log.warning('Use of MusicBrainzIdentifier disabled!')
             self.log.info('Consider using MusicBrainzIdentifier for your music library')
             self.use_mbid = Meta.use_mbid = False
-        # TODO: Why do I need to intercept OSError here?
-        # why is it not wrapped in PlayerError in __getattr__?
-        # (cf. commit message for more)
-        try:
-            self._reset_cache()
-        except OSError as err:
-            raise PlayerError(f'Error during cache init: {err}') from err
+        self._reset_cache()
     # ######### / Overriding MPDClient #########
 
     def _reset_cache(self):