Skip to content

Commit

Permalink
Default to empty label
Browse files Browse the repository at this point in the history
  • Loading branch information
undera committed Aug 27, 2022
1 parent 45886aa commit 5af8aaf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,7 @@ It is intentionally not fully-capable _load testing tool_, it is just _load gene
## Changelog

### 0.5.2 -- next
- requests from URLs file have default empty label, to avoid garbaging reports with too many labels
- retry reading string index file, for the case it lags behind binary file


Expand Down
3 changes: 2 additions & 1 deletion taurus/encarno/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,8 @@ def _text_file_reader(self, filename, scenario):
parts = line.split(" ")

req = {
"url": parts[1 if len(parts) > 1 else 0]
"url": parts[1 if len(parts) > 1 else 0],
"label": "",
}

if len(parts) > 1:
Expand Down

0 comments on commit 5af8aaf

Please sign in to comment.