Skip to content

Commit b4ebfb6

Browse files
committed
Merge pull request apache#1298 from remibergsma/staticroute_delete_47
CLOUDSTACK-9204 Do not error when staticroute is already goneWhen deleting a static route fails because it isn't there any more (KeyError), it should succeed instead. Error seen: ``` [INFO] Processing JSON file static_routes.json.1451560145 Traceback (most recent call last): File "/opt/cloud/bin/update_config.py", line 140, in <module> process_file() File "/opt/cloud/bin/update_config.py", line 52, in process_file qf.load(None) File "/opt/cloud/bin/merge.py", line 258, in load proc = updateDataBag(self) File "/opt/cloud/bin/merge.py", line 91, in _init_ self.process() File "/opt/cloud/bin/merge.py", line 131, in process dbag = self.process_staticroutes(self.db.getDataBag()) File "/opt/cloud/bin/merge.py", line 179, in process_staticroutes return cs_staticroutes.merge(dbag, self.qFile.data) File "/opt/cloud/bin/cs_staticroutes.py", line 26, in merge del dbag[key] KeyError: u'192.168.0.3' ``` * pr/1298: CLOUDSTACK-9204 Do not error when staticroute is already gone Signed-off-by: Remi Bergsma <github@remi.nl>
2 parents 317c28a + 779f4b3 commit b4ebfb6

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

systemvm/patches/debian/config/opt/cloud/bin/cs_staticroutes.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@ def merge(dbag, staticroutes):
2323
key = route['ip_address']
2424
revoke = route['revoke']
2525
if revoke:
26-
del dbag[key]
26+
try:
27+
del dbag[key]
28+
except KeyError:
29+
pass
2730
else:
2831
dbag[key] = route
2932

0 commit comments

Comments
 (0)