From aa6ac6320908510560802fa967fe83dcf7237338 Mon Sep 17 00:00:00 2001 From: tan Date: Wed, 20 Jan 2021 14:09:19 +0530 Subject: [PATCH] fix undefvar error in `@debug` message keyword Fixed a `@debug` message where an undefined variable was being used --- src/protocol.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/protocol.jl b/src/protocol.jl index cef8197..6c8c4f5 100644 --- a/src/protocol.jl +++ b/src/protocol.jl @@ -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)