Skip to content

Commit

Permalink
fixup! prober/browser,multihttp,scripted: fill CheckInfo
Browse files Browse the repository at this point in the history
  • Loading branch information
roobre committed Oct 9, 2024
1 parent 8573f88 commit 30e6790
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion internal/prober/browser/browser.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func NewProber(ctx context.Context, check sm.Check, logger zerolog.Logger, runne
Settings: k6runner.Settings{
Timeout: check.Timeout,
},
CheckInfo: k6runner.CheckInfo{}.FromSM(check),
CheckInfo: k6runner.CheckInfoFromSM(check),
},
}

Expand Down
2 changes: 1 addition & 1 deletion internal/prober/multihttp/multihttp.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func NewProber(ctx context.Context, check sm.Check, logger zerolog.Logger, runne
Settings: k6runner.Settings{
Timeout: check.Timeout,
},
CheckInfo: k6runner.CheckInfo{}.FromSM(check),
CheckInfo: k6runner.CheckInfoFromSM(check),
},
}

Expand Down
2 changes: 1 addition & 1 deletion internal/prober/scripted/scripted.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func NewProber(ctx context.Context, check sm.Check, logger zerolog.Logger, runne
Settings: k6runner.Settings{
Timeout: check.Timeout,
},
CheckInfo: k6runner.CheckInfo{}.FromSM(check),
CheckInfo: k6runner.CheckInfoFromSM(check),
},
}

Expand Down

0 comments on commit 30e6790

Please sign in to comment.