We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f11b3b commit ca7b7dcCopy full SHA for ca7b7dc
src/confluent_kafka/schema_registry/schema_registry_client.py
@@ -351,8 +351,6 @@ class _SchemaCache(object):
351
352
def __init__(self):
353
self.lock = Lock()
354
- self.schemaid_index = {}
355
- self.schema_index = {}
356
self.schema_id_index = defaultdict(dict)
357
self.schema_index = defaultdict(dict)
358
self.rs_id_index = defaultdict(dict)
tests/schema_registry/test_json_serdes.py
@@ -219,7 +219,7 @@ def test_json_serialize_references():
219
'bytesField': base64.b64encode(b'foobar').decode('utf-8'),
220
}
221
obj = {
222
- 'refField': referenced
+ 'otherField': referenced
223
224
ref_schema = {
225
"type": "object",
0 commit comments