Skip to content
This repository has been archived by the owner on Mar 28, 2019. It is now read-only.

Commit

Permalink
Speed-up startup (ref #490)
Browse files Browse the repository at this point in the history
  • Loading branch information
leplatrem committed Mar 4, 2016
1 parent d75ae21 commit e48e079
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ This document describes changes between each past release.
- Changed default duration between retries on error (``Retry-After`` header)
from 30 to 3 seconds.
- Allow buckets to store arbitrary properties. (#462)
- Speed-up startup (ref #490)


1.11.2 (2016-02-03)
Expand Down
2 changes: 1 addition & 1 deletion kinto/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import os
import sys

import pip
from six.moves import input
from cliquet.scripts import cliquet
from pyramid.scripts import pserve
Expand Down Expand Up @@ -76,6 +75,7 @@ def main(args=None):
try:
import psycopg2 # NOQA
except ImportError:
import pip
pip.main(['install', "cliquet[postgresql]"])

elif args['which'] == 'migrate':
Expand Down

0 comments on commit e48e079

Please sign in to comment.