Skip to content

Commit

Permalink
perf script - remove the internal usage of -t
Browse files Browse the repository at this point in the history
removing the -t option that is being used on ab.  This is telling
ab to stop the scenario after 60 seconds; however, a test can run
much longer.
  • Loading branch information
bbuckingham committed Aug 29, 2011
1 parent e0f19f4 commit 3bd8578
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/test/perf-load-katello.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def randomString():

def hit_url(hits, cookie, concurrency, url):
# ab -n 10 -C "_src_session=BAh7CSIQX2NzcmZfW..snip..b9c7f05ccd78027" "http://0.0.0.0:3000/dashboard"
retval = os.system("ab -t 60 -n %s -C \"%s\" -c %s %s" % (hits, cookie, concurrency, url))
retval = os.system("ab -n %s -C \"%s\" -c %s %s" % (hits, cookie, concurrency, url))

if __name__ == '__main__':

Expand Down

0 comments on commit 3bd8578

Please sign in to comment.