Skip to content

Commit df312d5

Browse files
author
Rémy HUBSCHER
committed
Remove mentions of cliquet
1 parent 0179c10 commit df312d5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ To enable this, specify the number of retries on the client:
257257
retry=10)
258258
259259
The Kinto protocol lets the server `define the duration in seconds between retries
260-
<https://kinto.readthedocs.io/en/latest/api/1.x/cliquet/backoff.html#retry-after-indicators>`_.
260+
<https://kinto.readthedocs.io/en/latest/api/1.x/backoff.html>`_.
261261
It is possible (but not recommended) to force this value in the clients:
262262

263263
.. code-block:: python

kinto_http/tests/functional.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import requests
66
from six.moves import configparser
77

8-
from cliquet import utils as cliquet_utils
8+
from kinto.core import utils as kinto_core_utils
99

1010
from kinto_http import Client, BucketNotFound, KintoException
1111
from kinto_http import replication
@@ -38,7 +38,7 @@ def tearDown(self):
3838
def get_user_id(self, credentials):
3939
hmac_secret = self.config.get('app:main', 'kinto.userid_hmac_secret')
4040
credentials = '%s:%s' % credentials
41-
digest = cliquet_utils.hmac_digest(hmac_secret, credentials)
41+
digest = kinto_core_utils.hmac_digest(hmac_secret, credentials)
4242
return 'basicauth:%s' % digest
4343

4444
def test_bucket_creation(self):

kinto_http/tests/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from .support import unittest, mock_response, build_response, get_http_error
44

55
from kinto_http import (KintoException, BucketNotFound, Client,
6-
DO_NOT_OVERWRITE)
6+
DO_NOT_OVERWRITE)
77

88

99
class ClientTest(unittest.TestCase):

0 commit comments

Comments
 (0)