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 e92512e commit 73e3ccfCopy full SHA for 73e3ccf
lib/weaviate/objects.rb
@@ -169,8 +169,6 @@ def batch_delete(
169
170
unless consistency_level.nil?
171
validate_consistency_level!(consistency_level)
172
-
173
- path << "?consistency_level=#{consistency_level.to_s.upcase}"
174
end
175
176
response = client.connection.delete(path) do |req|
@@ -182,6 +180,7 @@ def batch_delete(
182
180
}
183
181
req.body["output"] = output unless output.nil?
184
req.body["dryRun"] = dry_run unless dry_run.nil?
+ req.params["consistency_level"] = consistency_level.to_s.upcase unless consistency_level.nil?
185
req.params["tenant"] = tenant unless tenant.nil?
186
187
0 commit comments