Skip to content

Commit 92b5c19

Browse files
committed
fast forward, resolve conflicts
1 parent dc93c9b commit 92b5c19

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

confluent_kafka/avro/cached_schema_registry_client.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,6 @@ def __init__(self, url, max_schemas_per_subject=1000, ca_location=None, cert_loc
110110
s.cert = self._configure_client_tls(conf)
111111
s.auth = self._configure_basic_auth(conf)
112112

113-
retries = Retry(connect=10, read=10, backoff_factor=.5)
114-
s.mount('http://', HTTPAdapter(max_retries=retries))
115-
s.mount('https://', HTTPAdapter(max_retries=retries))
116-
117113
self.url = conf.pop('url')
118114
self._session = s
119115

docker/bin/cluster_up.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
#!/usr/bin/env bash
2-
set -eu
1+
#!/usr/bin/env bash -eu
32

43
DOCKER_BIN="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
54
source ${DOCKER_BIN}/../.env

tests/integration/run.sh renamed to tests/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ cleanup() {
77
trap cleanup 0 2 3 6 15
88

99
TEST_SOURCE="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
10-
source ${TEST_SOURCE}/../../docker/.env
10+
source ${TEST_SOURCE}/../docker/.env
1111

1212
if [[ ${1:-} == "help" ]]; then
1313
python ${TEST_SOURCE}/integration/integration_test.py --help

0 commit comments

Comments
 (0)