Skip to content

Commit

Permalink
함수인자 변경에 따른 변수명 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
punkryn committed Apr 30, 2024
1 parent cc4e6a0 commit b8ebac6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stress-test/test-result-combiner.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def writeResultFile(p: Path, durationResult: dict, failResult: dict):
columns = ['lock', 'vus', 'tickets', 'minBackoff', 'maxBackoff', 'retry', 'waitTime', 'leaseTime', 'duration', 'passes', 'fails']
df = pd.DataFrame(columns=columns)

for i, key in enumerate(result):
for i, key in enumerate(durationResult):
lock, vus, vusValue, tickets, ticketsValue, minBackoff, minBackoffValue, maxBackoff, maxBackoffValue, retry, retryValue, waitTime, waitTimeValue, leaseTime, leaseTimeValue = key.split('_')

se = pd.Series([lock, vusValue, ticketsValue, minBackoffValue, maxBackoffValue, retryValue, waitTimeValue, leaseTimeValue, durationResult[key], failResult[key][0], failResult[key][1]], index=df.columns)
Expand Down

0 comments on commit b8ebac6

Please sign in to comment.