From fcaefbcd615ad3740012df8dc176d5d655187629 Mon Sep 17 00:00:00 2001 From: descholar-ceo Date: Mon, 12 Feb 2024 21:35:23 +0200 Subject: [PATCH] Debug method return --- src/gato/runner.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gato/runner.cr b/src/gato/runner.cr index fc73b88..8eded6f 100644 --- a/src/gato/runner.cr +++ b/src/gato/runner.cr @@ -2,7 +2,6 @@ module Gato class Runner def self.start(param : Array(NamedTuple(queue_name: String, block: JSON::Any ->))) : Nil Log.notice { "El gato esta maullando..." } - AMQP::Client.start(Gato.configuration.amqp_url.to_s) do |c| c.channel do |ch| q = ch.queue param[0][:queue_name] @@ -17,6 +16,7 @@ module Gato end end end + Log.notice { "El gato no maúlla..." } end end end