Skip to content

Commit

Permalink
Fix invalid logging of deployment ID for heartbeat
Browse files Browse the repository at this point in the history
  • Loading branch information
pkosiec committed Mar 27, 2023
1 parent cf084df commit c958fd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/status/gql_reporter.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func newGraphQLStatusReporter(logger logrus.FieldLogger, client GraphQLClient, r
// ReportDeploymentStartup reports deployment startup to GraphQL server.
func (r *GraphQLStatusReporter) ReportDeploymentStartup(ctx context.Context) error {
logger := r.log.WithFields(logrus.Fields{
"deploymentID": r.gql.DeploymentID,
"deploymentID": r.gql.DeploymentID(),
"resourceVersion": r.getResourceVersion(),
"type": "startup",
})
Expand Down

0 comments on commit c958fd2

Please sign in to comment.