runnable 0.19.0__py3-none-any.whl → 0.20.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -190,6 +190,7 @@ class GenericK8sJobExecutor(GenericJobExecutor):
190
190
  self._use_volumes()
191
191
 
192
192
  job_log = self._context.run_log_store.get_job_log(run_id=self._context.run_id)
193
+ self.add_code_identities(job_log)
193
194
 
194
195
  attempt_log = job.execute_command(
195
196
  attempt_number=self.step_attempt_number,
@@ -428,6 +429,7 @@ class K8sJobExecutor(GenericK8sJobExecutor):
428
429
  )
429
430
 
430
431
  job_log = self._context.run_log_store.get_job_log(run_id=self._context.run_id)
432
+ self.add_code_identities(job_log)
431
433
 
432
434
  attempt_log = job.execute_command(
433
435
  attempt_number=self.step_attempt_number,
@@ -37,6 +37,7 @@ class LocalJobExecutor(GenericJobExecutor):
37
37
  logger.info("Trying to execute job")
38
38
 
39
39
  job_log = self._context.run_log_store.get_job_log(run_id=self._context.run_id)
40
+ self.add_code_identities(job_log)
40
41
 
41
42
  attempt_log = job.execute_command(
42
43
  attempt_number=self.step_attempt_number,
@@ -52,6 +52,7 @@ class LocalContainerJobExecutor(GenericJobExecutor):
52
52
  logger.info("Trying to execute job")
53
53
 
54
54
  job_log = self._context.run_log_store.get_job_log(run_id=self._context.run_id)
55
+ self.add_code_identities(job_log)
55
56
 
56
57
  attempt_log = job.execute_command(
57
58
  attempt_number=self.step_attempt_number,