Skip to content

Commit

Permalink
fixed linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
moklidia committed Nov 17, 2022
1 parent 84101c6 commit 296a2cc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions internal/clients/kuber/pods.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ func (client *Client) GetPodLogs(
previous bool,
) ([]string, error) {
logOptions := &v1.PodLogOptions{
Previous: previous,
Container: containerName,
TailLines: &limit,
Timestamps: true,
Previous: previous,
Container: containerName,
TailLines: &limit,
Timestamps: true,
}

request := client.clientset.CoreV1().Pods(namespace).GetLogs(podName, logOptions)
Expand Down

0 comments on commit 296a2cc

Please sign in to comment.