Skip to content
This repository has been archived by the owner on May 2, 2023. It is now read-only.

Commit

Permalink
Fixed param typo (#4)
Browse files Browse the repository at this point in the history
A typo in the plugin name caused it to look in the wrong place for the param.
  • Loading branch information
dHofstede authored Aug 14, 2020
1 parent abf39fc commit 26a39a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function MetricsByEndpoint(script, events) {
script.config.processor = {};
}

useOnlyRequestNames = script.config.plugins["metrics-by-endpoint-test"].useOnlyRequestNames || false;
useOnlyRequestNames = script.config.plugins["metrics-by-endpoint"].useOnlyRequestNames || false;

script.config.processor.metricsByEndpoint_beforeRequest = metricsByEndpoint_beforeRequest;
script.config.processor.metricsByEndpoint_afterResponse = metricsByEndpoint_afterResponse;
Expand Down

0 comments on commit 26a39a1

Please sign in to comment.