mbcollection: change chunk size to 200 releases

This commit is contained in:
Adrian Sampson 2012-10-14 20:35:03 -07:00
parent 244ffd71e2
commit f2ab26d6a4
2 changed files with 4 additions and 1 deletions

View file

@ -20,7 +20,7 @@ from beets import ui
import musicbrainzngs
from musicbrainzngs import musicbrainz
SUBMISSION_CHUNK_SIZE = 350
SUBMISSION_CHUNK_SIZE = 200
def submit_albums(collection_id, release_ids):
"""Add all of the release IDs to the indicated collection. Multiple

View file

@ -44,6 +44,9 @@ Changelog
than just being called "file" (thanks to Zach Denton).
* :doc:`/plugins/importfeeds`: Fix error in symlink mode with non-ASCII
filenames.
* :doc:`/plugins/mbcollection`: Fix an error when submitting a large number of
releases (we now submit only 200 releases at a time instead of 350). Thanks
to Jonathan Towne.
* Add the track mapping dictionary to the ``album_distance`` plugin function.
* Fix an assertion failure when the MusicBrainz main database and search server
disagree.