Add messages to make the job setup more transparent

Change-Id: I4c1ad9702549c422611fc5b84affb93af898eb67
This commit is contained in:
Albin Vass 2021-02-28 10:55:32 +01:00
parent e65ae79d46
commit 397ef71dd8
1 changed files with 9 additions and 1 deletions

View File

@ -1011,6 +1011,10 @@ class AnsibleJob(object):
projects = set()
repo_state = args['repo_state']
with open(self.jobdir.job_output_file, 'a') as job_output:
job_output.write("{now} | Updating repositories\n".format(
now=datetime.datetime.now()
))
# Make sure all projects used by the job are updated...
for project in args['projects']:
self.log.debug("Updating project %s" % (project,))
@ -1056,8 +1060,12 @@ class AnsibleJob(object):
if self.aborted:
self._send_aborted()
return
self.log.debug("Git updates complete")
with open(self.jobdir.job_output_file, 'a') as job_output:
job_output.write("{now} | Preparing job workspace\n".format(
now=datetime.datetime.now()
))
merger = self.executor_server._getMerger(
self.jobdir.src_root,
self.executor_server.merge_root,