From fffcac63c0c05f4d0706062c5816e2b7a99d7923 Mon Sep 17 00:00:00 2001 From: akumari Date: Fri, 15 Nov 2024 19:36:47 +0530 Subject: [PATCH] Remove PostgreSQL PORT setting The `PORT` setting in the database configuration is redundant because Django defaults to the PostgreSQL standard port (`5432`) when the `PORT` setting is omitted. Reference: https://docs.djangoproject.com/en/5.1/ref/settings/#std-setting-PORT --- roles/pulp/templates/settings.py.j2 | 1 - 1 file changed, 1 deletion(-) diff --git a/roles/pulp/templates/settings.py.j2 b/roles/pulp/templates/settings.py.j2 index f7947b0..8e00664 100644 --- a/roles/pulp/templates/settings.py.j2 +++ b/roles/pulp/templates/settings.py.j2 @@ -11,7 +11,6 @@ DATABASES = { 'USER': 'pulp', 'PASSWORD': '{{ pulp_db_password }}', 'HOST': 'localhost', - 'PORT': '', } }