Skip to content

Commit 0126218

Browse files
committed
Fixed db dsn build
1 parent d76033f commit 0126218

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/python3_commons/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def build_dsn_if_missing(self) -> 'DBSettings':
5555
password=self.password.get_secret_value() if self.password else None,
5656
host=self.host,
5757
port=self.port,
58-
path=f'/{self.name}',
58+
path=self.name,
5959
)
6060

6161
return self

0 commit comments

Comments
 (0)