fix(shared): remove unused field from rabbitmq config (#2012)
This commit is contained in:
parent
bcd877266f
commit
6df1087abc
|
@ -54,7 +54,6 @@ class DatabaseConfig(BaseModel):
|
||||||
class RabbitMQConfig(BaseModel):
|
class RabbitMQConfig(BaseModel):
|
||||||
host: str = "localhost"
|
host: str = "localhost"
|
||||||
port: int = 5672
|
port: int = 5672
|
||||||
name: str = "libretime"
|
|
||||||
user: str = "libretime"
|
user: str = "libretime"
|
||||||
password: str = "libretime"
|
password: str = "libretime"
|
||||||
vhost: str = "/libretime"
|
vhost: str = "/libretime"
|
||||||
|
|
Loading…
Reference in New Issue