Skip to content

Commit

Permalink
Prep v1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rfk committed Nov 23, 2016
1 parent b57a109 commit 35283e6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ SQLAlchemy==0.9.4
unittest2==0.5.1
zope.component==4.2.1
configparser==3.5.0b2
https://github.com/mozilla-services/mozservices/archive/706e09b78a78ebff4f71dcaca2fd7b68fa2885fb.zip
mozsvc==0.9
https://github.com/mozilla-services/tokenserver/archive/1.2.23.zip
https://github.com/mozilla-services/server-syncstorage/archive/236b6e779fb29a08dc63b24f101ff10281e1c0bb.zip
https://github.com/mozilla-services/server-syncstorage/archive/f0190c0eb730e2cd1fbaf89f95c50114b6289042.zip
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name='syncserver',
version="1.5.2",
version="1.6.0",
packages=['syncserver'],
entry_points=entry_points
)
3 changes: 3 additions & 0 deletions syncserver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,9 @@ def includeme(config):
settings["storage.backend"] = "syncstorage.storage.sql.SQLStorage"
settings["storage.sqluri"] = sqluri
settings["storage.create_tables"] = True
if "storage.batch_upload_enabled" not in settings:
# Default the new batch-upload API to on
settings["storage.batch_upload_enabled"] = True
if "browserid.backend" not in settings:
# Default to remote verifier, with base of public_url as only audience
audience = urlunparse(urlparse(public_url)._replace(path=""))
Expand Down

0 comments on commit 35283e6

Please sign in to comment.