We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90d5abd commit eac16daCopy full SHA for eac16da
sqlmesh/core/engine_adapter/fabric.py
@@ -180,7 +180,9 @@ def _make_fabric_api_request_with_location(
180
181
# Include response body if present
182
if response.content:
183
- result.update(response.json())
+ json_data = response.json()
184
+ if json_data:
185
+ result.update(json_data)
186
187
return result
188
0 commit comments