Skip to content

Commit

Permalink
remove hard coded namespace from grep logs
Browse files Browse the repository at this point in the history
  • Loading branch information
pinheadmz committed Aug 22, 2024
1 parent 9d912d5 commit ee3a6ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/warnet/cli/bitcoin.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def grep_logs(pattern: str, show_k8s_timestamps: bool, no_sort: bool):
continue

# Get logs from the specific container
command = f"kubectl logs {pod_name} -c {container_name} -n warnet --timestamps"
command = f"kubectl logs {pod_name} -c {container_name} --timestamps"
logs = run_command(command)

if logs is not False:
Expand Down

0 comments on commit ee3a6ee

Please sign in to comment.