Skip to content

Commit eb15adc

Browse files
author
twalder-docnet
committed
Fix for namespace deletion
1 parent e5ba89b commit eb15adc

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/GDS/Gateway.php

+3
Original file line numberDiff line numberDiff line change
@@ -357,6 +357,9 @@ public function delete(\Google_Service_Datastore_Key $obj_key)
357357
public function deleteMulti(array $arr_keys)
358358
{
359359
$obj_mutation = new \Google_Service_Datastore_Mutation();
360+
foreach($arr_keys as $obj_key) {
361+
$this->applyNamespace($obj_key);
362+
}
360363
$obj_mutation->setDelete($arr_keys);
361364
$this->obj_last_response = $this->commitMutation($obj_mutation);
362365
return TRUE;

0 commit comments

Comments
 (0)