Skip to content

Commit

Permalink
Merge pull request #2851 from Yelp/PAASTA-16685-fix-k8s-stdout
Browse files Browse the repository at this point in the history
Fix name of stdout stream for k8s status
  • Loading branch information
qui committed Jun 24, 2020
2 parents 1829a5f + 145e5ca commit e2a7531
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion paasta_tools/kubernetes_tools.py
Expand Up @@ -1591,7 +1591,7 @@ def format_tail_lines_for_kubernetes_pod(
)
rows.append(PaastaColors.red(f" {container.tail_lines.error_message}"))

for stream_name in ("Stdout", "stderr"):
for stream_name in ("stdout", "stderr"):
stream_lines = getattr(container.tail_lines, stream_name, [])
if len(stream_lines) > 0:
rows.append(
Expand Down

0 comments on commit e2a7531

Please sign in to comment.