spotify: Add SPOTIFY_TIMEOUT setting

This commit is contained in:
Stein Magnus Jodal 2012-12-19 23:25:20 +01:00
parent d1b2641b86
commit 3cdc9e4e99
2 changed files with 14 additions and 0 deletions

View File

@ -8,6 +8,11 @@ This change log is used to track all major changes to Mopidy.
v0.11.0 (in development)
========================
**Spotify backend**
- Add :attr:`mopidy.settings.SPOTIFY_TIMEOUT` setting which allows you to
control how long we should wait before giving up on Spotify searches, etc.
**MPD frontend**
- Add support for the ``findadd`` command.

View File

@ -282,3 +282,12 @@ SPOTIFY_PROXY_USERNAME = None
#:
#: SPOTIFY_PROXY_PASSWORD = None
SPOTIFY_PROXY_PASSWORD = None
#: Max number of seconds to wait for Spotify operations to complete.
#:
#: Used by :mod:`mopidy.backends.spotify`
#:
#: Default::
#:
#: SPOTIFY_TIMEOUT = 10
SPOTIFY_TIMEOUT = 10