From c0db81c3a2d9b17f09761fbb78b90d5e9006a24a Mon Sep 17 00:00:00 2001 From: Mario Date: Sat, 21 May 2022 11:42:30 +0200 Subject: [PATCH] Removed mongodb configuration, and configured RabbitMQ --- parser/configurationsParser.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/parser/configurationsParser.go b/parser/configurationsParser.go index 43e46f0..55024b7 100644 --- a/parser/configurationsParser.go +++ b/parser/configurationsParser.go @@ -24,8 +24,8 @@ type Logging struct { } type Tracing struct { - MongoEnabled bool `yaml:"mongoEnabled,omitempty"` - MongoURI string `yaml:"mongoURI,omitempty"` + RabbitMQEnabled bool `yaml:"rabbitMQEnabled,omitempty"` + RabbitMQURI string `yaml:"rabbitMQURI,omitempty"` } type BeelzebubServiceConfiguration struct {