Skip to content

Commit

Permalink
fix undefvar error in @debug message keyword
Browse files Browse the repository at this point in the history
Fixed a `@debug` message where an undefined variable was being used
  • Loading branch information
tanmaykm committed Jan 20, 2021
1 parent 7681d35 commit aa6ac63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/protocol.jl
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ function connection(; virtualhost="/", host="localhost", port=AMQPClient.AMQP_DE
channelmax::Integer=AMQPClient.DEFAULT_CHANNELMAX,
connect_timeout=AMQPClient.DEFAULT_CONNECT_TIMEOUT,
amqps::Union{MbedTLS.SSLConfig,Nothing})
@debug("connecting", host, port, virtualhost, tls)
@debug("connecting", host, port, virtualhost)
conn = Connection(; virtualhost=virtualhost, host=host, port=port, send_queue_size=send_queue_size)
chan = channel(conn, AMQPClient.DEFAULT_CHANNEL, true)

Expand Down

0 comments on commit aa6ac63

Please sign in to comment.