Skip to content

Commit

Permalink
Fixes lint
Browse files Browse the repository at this point in the history
  • Loading branch information
vyzaldysanchez committed Nov 14, 2024
1 parent 1554b2a commit 8c7de51
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/capabilities/compute/compute.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import (
"errors"
"fmt"
"net/http"
"strconv"
"strings"
"sync"
"time"
Expand Down Expand Up @@ -337,7 +338,7 @@ func (c *Compute) createFetcher() func(ctx context.Context, req *wasmpb.FetchReq
}

c.metrics.with(
"status", fmt.Sprintf("%d", response.StatusCode),
"status", strconv.FormatUint(uint64(response.StatusCode), 10),
platform.KeyWorkflowID, req.Metadata.WorkflowId,
platform.KeyWorkflowName, req.Metadata.WorkflowName,
platform.KeyWorkflowOwner, req.Metadata.WorkflowOwner,
Expand Down

0 comments on commit 8c7de51

Please sign in to comment.