Removed mongodb configuration, and configured RabbitMQ

This commit is contained in:
Mario
2022-05-21 11:42:16 +02:00
parent 4a18e93016
commit 927247db1a
3 changed files with 5 additions and 3 deletions

View File

@ -5,5 +5,5 @@ core:
logDisableTimestamp: true
logsPath: ./logs
tracing:
mongoEnabled: true
mongoURI: "mongodb://root:example@mongo:27017/?maxPoolSize=20&w=majority"
rabbitMQEnabled: false
rabbitMQURI: "amqp://guest:guest@localhost:5672/"

2
go.mod
View File

@ -6,8 +6,8 @@ require (
github.com/gliderlabs/ssh v0.3.3 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/sirupsen/logrus v1.8.1
github.com/streadway/amqp v1.0.0 // indirect
github.com/stretchr/testify v1.6.1 // indirect
go.mongodb.org/mongo-driver v1.9.1 // indirect
golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)

2
go.sum
View File

@ -29,6 +29,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/sirupsen/logrus v1.8.1 h1:dJKuHgqk1NNQlqoA6BTlM1Wf9DOH3NBjQyu0h9+AZZE=
github.com/sirupsen/logrus v1.8.1/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0=
github.com/streadway/amqp v1.0.0 h1:kuuDrUJFZL1QYL9hUNuCxNObNzB0bV/ZG5jV3RWAQgo=
github.com/streadway/amqp v1.0.0/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw=
github.com/stretchr/objx v0.1.0 h1:4G4v2dO3VZwixGIRoQ5Lfboy6nUhCyYzaqnIAPPhYs4=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/testify v1.2.2 h1:bSDNvY7ZPG5RlJ8otE/7V6gMiyenm9RtJ7IUVIAoJ1w=