Skip to content

Commit

Permalink
fix: use instance base_container_name to fetch logs on trigger_reentry
Browse files Browse the repository at this point in the history
  • Loading branch information
peloyeje committed Jul 17, 2024
1 parent 6366204 commit ada3b9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/providers/cncf/kubernetes/operators/pod.py
Original file line number Diff line number Diff line change
Expand Up @@ -766,7 +766,7 @@ def trigger_reentry(self, context: Context, event: dict[str, Any]) -> Any:

pod_log_status = self.pod_manager.fetch_container_logs(
pod=self.pod,
container_name=self.BASE_CONTAINER_NAME,
container_name=self.base_container_name,
follow=follow,
since_time=last_log_time,
)
Expand Down

0 comments on commit ada3b9a

Please sign in to comment.