Skip to content

Commit f4a0ebc

Browse files
committed
Merge hotfix change
2 parents 95d14d6 + eeb8522 commit f4a0ebc

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

asgi_webdav/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88

99
__name__ = "ASGIWebDAV"
10-
__version__ = "1.6.1"
10+
__version__ = "1.6.2"
1111

1212
__author__ = "Rex Zhang"
1313
__author_email__ = "rex.zhang@gmail.com"

asgi_webdav/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ def reinit_config_from_file_multi_suffix(
383383
suffixs.remove(suffix)
384384

385385
for suffix in suffixs:
386-
file_name = f"{stem}{suffix}"
386+
file_name = file.parent.joinpath(f"{stem}{suffix}").as_posix()
387387
logger.warning(f"Try load config file: {file_name}!")
388388
try:
389389
return reinit_config_from_file(file_name, complete_config)

docs/changelog.en.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
- feat: support zstd compression in response
88
- chore: update xmltodict to v1.0.2
99

10+
## 1.6.2 - 20251216
11+
12+
- fix: use absolute path for multi-suffix config files
13+
1014
## 1.6.1 - 20251101
1115

1216
- fix(docker): ldap depend miss

0 commit comments

Comments
 (0)