Loading cloudcontrol/node/hypervisor/__init__.py +2 −6 Original line number Diff line number Diff line Loading @@ -547,12 +547,8 @@ class Handler(HostHandler): try: job = self.main.job_manager.create(ExportVolume, volume, raddr, rport) # we don't run the job in a background thread thus exceptions are # sent to the sjRPC job.start_current() # otherwise we would do # job.start() # job.join() job.start() job.wait() except Exception: logger.exception('Error while exporting volume') raise Loading Loading
cloudcontrol/node/hypervisor/__init__.py +2 −6 Original line number Diff line number Diff line Loading @@ -547,12 +547,8 @@ class Handler(HostHandler): try: job = self.main.job_manager.create(ExportVolume, volume, raddr, rport) # we don't run the job in a background thread thus exceptions are # sent to the sjRPC job.start_current() # otherwise we would do # job.start() # job.join() job.start() job.wait() except Exception: logger.exception('Error while exporting volume') raise Loading