Repository: libcloud Updated Branches: refs/heads/trunk 7366122bc -> b439b161c
Patch for deletion against asynchronous Google subnetwork API Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/1b7e87b8 Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/1b7e87b8 Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/1b7e87b8 Branch: refs/heads/trunk Commit: 1b7e87b84785bbc19892555d77f62472a5e582d2 Parents: 7366122 Author: John Baublitz <[email protected]> Authored: Tue Jan 10 11:29:20 2017 -0500 Committer: Anthony Shaw <[email protected]> Committed: Tue Feb 21 17:25:27 2017 +0100 ---------------------------------------------------------------------- libcloud/compute/drivers/gce.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/1b7e87b8/libcloud/compute/drivers/gce.py ---------------------------------------------------------------------- diff --git a/libcloud/compute/drivers/gce.py b/libcloud/compute/drivers/gce.py index 1195170..5eccac5 100644 --- a/libcloud/compute/drivers/gce.py +++ b/libcloud/compute/drivers/gce.py @@ -6906,7 +6906,7 @@ class GCENodeDriver(NodeDriver): region_name = region.name request = '/regions/%s/subnetworks/%s' % (region_name, subnet_name) - self.connection.request(request, method='DELETE').object + self.connection.async_request(request, method='DELETE').object return True def ex_get_subnetwork(self, name, region=None):
