From e83727d5886ad4082bf50bb0bc4b97df6d3b4c4a Mon Sep 17 00:00:00 2001 From: micafer Date: Wed, 16 Jan 2019 16:41:07 +0100 Subject: [PATCH 1/2] Update changelog --- changelog | 2 ++ 1 file changed, 2 insertions(+) diff --git a/changelog b/changelog index a15632c20..418a8f686 100644 --- a/changelog +++ b/changelog @@ -471,3 +471,5 @@ IM 1.8.0: * Add support to MongoDB. * Fix error Unable to get cloud-init contextualization to work with GCE in 1.7.5 & above. * Enable to force OpenID auth. + * Do not stop ctxt process in all VMs in case of failure in a previous step. + * Fix error contextualization never ends if a VM is deleted during context step. From 0f39bbadfa008016df39826bcec239fb72c8a64f Mon Sep 17 00:00:00 2001 From: micafer Date: Wed, 16 Jan 2019 16:57:32 +0100 Subject: [PATCH 2/2] Minor change --- IM/VirtualMachine.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IM/VirtualMachine.py b/IM/VirtualMachine.py index faf32ed54..e33628c5f 100644 --- a/IM/VirtualMachine.py +++ b/IM/VirtualMachine.py @@ -913,7 +913,7 @@ def get_ctxt_output(self, remote_dir, delete=False): stdout += f.read() + "\n" self.log_error(stdout) msg += stdout - except: + except Exception: self.log_exception("Error getting stdout and stderr to guess why the agent output is not there.") except Exception as ex: self.log_exception("Error getting contextualization agent output: " + remote_dir + '/ctxt_agent.out')