We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2f4d2a commit 74a94c4Copy full SHA for 74a94c4
1 file changed
src/practitest_firecracker/practitest.clj
@@ -16,7 +16,7 @@
16
;; utils
17
18
(def backoff-timeout "Backoff timeout in seconds" 20)
19
-(def num-attemps "Number of attempts to run" 10)
+(def max-attempts "Number of attempts to run" 10)
20
(def timeout-between-attempts "Timeout in seconds between attempts" 1)
21
(def run-batch-bucket-size 10)
22
@@ -39,7 +39,7 @@
39
"both `query-params` and `form-params` can't be specified")
40
(loop [results []
41
uri uri
42
- attempts num-attemps
+ attempts max-attempts
43
params (cond-> {:basic-auth credentials
44
:throw-exceptions false
45
:as :json}
0 commit comments