Merge "fix early exit of clone_chroot"

This commit is contained in:
Zuul 2024-10-07 18:06:51 +00:00 committed by Gerrit Code Review
commit 71604e5dfb

View File

@ -602,11 +602,11 @@ class Debbuilder(object):
except Exception as e:
self.logger.error(str(e))
self.logger.error("Failed to clone and update config file %s", clone_conf_path)
break
continue
else:
self.logger.debug("Successfully cloned and updated chroot's config %s", clone_conf_path)
chroot_sequence = chroot_sequence + 1
break
continue
# Save the above chroot config files to the external persistent storage
self.save_chroots_config(user, project)