From 6df1087abc4156bdb5c4474f889ae77dd37418f9 Mon Sep 17 00:00:00 2001 From: Jonas L Date: Mon, 1 Aug 2022 12:03:03 +0200 Subject: [PATCH] fix(shared): remove unused field from rabbitmq config (#2012) --- shared/libretime_shared/config/_models.py | 1 - 1 file changed, 1 deletion(-) diff --git a/shared/libretime_shared/config/_models.py b/shared/libretime_shared/config/_models.py index 34750b212..364dd8092 100644 --- a/shared/libretime_shared/config/_models.py +++ b/shared/libretime_shared/config/_models.py @@ -54,7 +54,6 @@ class DatabaseConfig(BaseModel): class RabbitMQConfig(BaseModel): host: str = "localhost" port: int = 5672 - name: str = "libretime" user: str = "libretime" password: str = "libretime" vhost: str = "/libretime"