Skip to content

Commit

Permalink
Temporary fix to bug which causes that experiments send n-1 requests …
Browse files Browse the repository at this point in the history
…and not n
  • Loading branch information
praith-dsg committed Jul 16, 2022
1 parent 1b8827e commit 2437aba
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion galileoexperiments/experiment/profiling/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,8 @@ def requests():
client_group = profiling_app.spawn_group(workload_config.n_clients, rds, galileo, client_group_config)

def requests():
client_group.request(n=workload_config.n, ia=workload_config.ia).wait()
# FIXME for some reason workers send only n-1 and not n requests
client_group.request(n=workload_config.n+1, ia=workload_config.ia).wait()
client_group.close()

try:
Expand Down

0 comments on commit 2437aba

Please sign in to comment.