Skip to content

Commit

Permalink
fix reference check for response
Browse files Browse the repository at this point in the history
  • Loading branch information
beligante committed Oct 6, 2022
1 parent 132045d commit db5ffb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions interop/script/run.exs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{options, _, _} = OptionParser.parse(System.argv(), strict: [rounds: :integer, concurrency: :integer, port: :integer])
rounds = Keyword.get(options, :rounds) || 2
rounds = Keyword.get(options, :rounds) || 20
max_concurrency = System.schedulers_online()
concurrency = Keyword.get(options, :concurrency) || max_concurrency
port = Keyword.get(options, :port) || 0
level = Keyword.get(options, :log_level) || "debug"
level = Keyword.get(options, :log_level) || "warn"
level = String.to_existing_atom(level)

require Logger
Expand Down

0 comments on commit db5ffb3

Please sign in to comment.