Skip to content

Commit

Permalink
scenarios: fix parallel data generation
Browse files Browse the repository at this point in the history
Signed-off-by: EESergey <[email protected]>
  • Loading branch information
EESergey authored Jul 30, 2024
1 parent 717a9b3 commit ddd73d4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scenarios/preset/preset_grpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

from argparse import Namespace
from concurrent.futures import ProcessPoolExecutor
from os.path import expanduser

from helpers.cmd import random_payload
from helpers.neofs_cli import create_container, upload_object
Expand Down Expand Up @@ -33,7 +34,7 @@
def main():
container_list = []
objects_struct = []
payload_filepath = '/tmp/data_file'
payload_filepath = expanduser("~") + '/data_file_' + args.size + 'k'

endpoints = args.endpoint.split(',')

Expand Down

0 comments on commit ddd73d4

Please sign in to comment.