Skip to content

Commit

Permalink
Remove mentions of cliquet
Browse files Browse the repository at this point in the history
  • Loading branch information
Rémy HUBSCHER committed Jun 10, 2016
1 parent 0179c10 commit 4b4ac25
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ To enable this, specify the number of retries on the client:
retry=10)
The Kinto protocol lets the server `define the duration in seconds between retries
<https://kinto.readthedocs.io/en/latest/api/1.x/cliquet/backoff.html#retry-after-indicators>`_.
<https://kinto.readthedocs.io/en/latest/api/1.x/backoff.html>`_.
It is possible (but not recommended) to force this value in the clients:

.. code-block:: python
Expand Down
4 changes: 2 additions & 2 deletions kinto_http/tests/functional.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import requests
from six.moves import configparser

from cliquet import utils as cliquet_utils
from kinto.core import utils as kinto_core_utils

from kinto_http import Client, BucketNotFound, KintoException
from kinto_http import replication
Expand Down Expand Up @@ -38,7 +38,7 @@ def tearDown(self):
def get_user_id(self, credentials):
hmac_secret = self.config.get('app:main', 'kinto.userid_hmac_secret')
credentials = '%s:%s' % credentials
digest = cliquet_utils.hmac_digest(hmac_secret, credentials)
digest = kinto_core_utils.hmac_digest(hmac_secret, credentials)
return 'basicauth:%s' % digest

def test_bucket_creation(self):
Expand Down

0 comments on commit 4b4ac25

Please sign in to comment.