Skip to content

Commit

Permalink
fix: do not ignore rewriteids/rewritetimestamps flags (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
kruskall authored Sep 6, 2024
1 parent e0e39b1 commit 190ce5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/soaktest/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -193,14 +193,14 @@ func getHandlerParams(runnerConfig *RunnerConfig, config ScenarioConfig) (loadge
IgnoreErrors: runnerConfig.IgnoreErrors,
RunForever: runnerConfig.RunForever,
Limiter: loadgen.GetNewLimiter(burst, interval),
RewriteIDs: true,
RewriteIDs: config.RewriteIDs,
RewriteServiceNames: config.RewriteServiceNames,
RewriteServiceNodeNames: config.RewriteServiceNodeNames,
RewriteServiceTargetNames: config.RewriteServiceTargetNames,
RewriteSpanNames: config.RewriteSpanNames,
RewriteTransactionNames: config.RewriteTransactionNames,
RewriteTransactionTypes: config.RewriteTransactionTypes,
RewriteTimestamps: true,
RewriteTimestamps: config.RewriteTimestamps,
Headers: headers,

Protocol: protocol,
Expand Down

0 comments on commit 190ce5a

Please sign in to comment.