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 8584487 commit a299bdfCopy full SHA for a299bdf
1 file changed
ckan_cloud_operator/providers/solr/manager.py
@@ -98,7 +98,12 @@ def get_collection_status(collection_name):
98
'collection_name': collection_name,
99
'solr_http_endpoint': get_internal_http_endpoint()}
100
else:
101
- res = json.loads(output)
+
102
+ res = {'schema': {'version': '2.8', 'name': 'ckan'}}
103
+ try:
104
+ res = json.loads(new_output)
105
+ except:
106
+ pass
107
return {'ready': True,
108
109
'solr_http_endpoint': get_internal_http_endpoint(),
0 commit comments