Skip to content

Commit 98aab52

Browse files
committed
fix: NHN KCP 설정에서 인증서에 대한 줄바꿈 문자를 올바르게 처리하도록 수정
1 parent 7dc9e7b commit 98aab52

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app/core/settings.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -453,8 +453,8 @@
453453

454454
# NHN KCP Settings
455455
NHN_KCP = types.SimpleNamespace(
456-
pg_api_cert=env.str("NHN_KCP_PG_API_CERT", default=""),
457-
pg_api_private_key=env.str("NHN_KCP_PG_API_PRIVATE_KEY", default=""),
456+
pg_api_cert=env.str("NHN_KCP_PG_API_CERT", default="").replace("\\n", "\n"),
457+
pg_api_private_key=env.str("NHN_KCP_PG_API_PRIVATE_KEY", default="").replace("\\n", "\n"),
458458
pg_api_password=env.str("NHN_KCP_PG_API_PASSWORD", default=""),
459459
)
460460

0 commit comments

Comments
 (0)