Skip to content

Commit

Permalink
[PAGOPA-2043] fix: adding tags for categorizing API calls
Browse files Browse the repository at this point in the history
  • Loading branch information
andrea-deri committed Feb 3, 2025
1 parent d022b56 commit 61e16a8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions performance-test/src/create_flow_sequential.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ const numberOfPartitions = 1 + (paymentsInFlow / 1000);
const subscriptionKey = `${__ENV.API_SUBSCRIPTION_KEY}`;


let params = {};
var params = {};

export function setup() {
// Before All
params = {
tags: { api_name: "" }
tags: { 'api_name': '' },
headers: {
'Content-Type': 'application/json',
'Ocp-Apim-Subscription-Key': subscriptionKey
Expand All @@ -52,7 +52,7 @@ export default function () {
setup();

// Generating essentials information
console.log(`VU: ${__VU} - ITER: ${__ITER}`);
//console.log(`VU: ${__VU} - ITER: ${__ITER}`);
let flowNameAndDate = generateFlowNameAndDate(requestValues.pspDomainId, `${__VU}`);
let flowName = flowNameAndDate[0]
let flowDate = flowNameAndDate[1]
Expand Down

0 comments on commit 61e16a8

Please sign in to comment.