We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5ba89b commit eb15adcCopy full SHA for eb15adc
src/GDS/Gateway.php
@@ -357,6 +357,9 @@ public function delete(\Google_Service_Datastore_Key $obj_key)
357
public function deleteMulti(array $arr_keys)
358
{
359
$obj_mutation = new \Google_Service_Datastore_Mutation();
360
+ foreach($arr_keys as $obj_key) {
361
+ $this->applyNamespace($obj_key);
362
+ }
363
$obj_mutation->setDelete($arr_keys);
364
$this->obj_last_response = $this->commitMutation($obj_mutation);
365
return TRUE;
0 commit comments