Skip to content

Commit

Permalink
fix: nil pointer exception (#3239)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakeyheath authored Apr 18, 2024
1 parent 7914533 commit be7d2da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/cmd/logs.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ func runLogs(cmd *cobra.Command, args []string) error {
logrus.Info("You're missing the container name, use the --container flag to filter the logs further.")
}
return b.PrintLogs(
util.NewLogGroupContext(ctx, happyClient.HappyConfig.GetLogGroupPrefix()),
util.NewLogGroupContext(ctx, happyConfig.GetLogGroupPrefix()),
stackName,
serviceName,
containerName,
Expand Down

0 comments on commit be7d2da

Please sign in to comment.