Skip to content

Commit

Permalink
Remove PostgreSQL PORT setting
Browse files Browse the repository at this point in the history
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
  • Loading branch information
archanaserver authored and ehelms committed Nov 15, 2024
1 parent fb87fb4 commit 20485c3
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion roles/pulp/templates/settings.py.j2
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ DATABASES = {
'USER': 'pulp',
'PASSWORD': '{{ pulp_db_password }}',
'HOST': 'localhost',
'PORT': '',
}
}

Expand Down

0 comments on commit 20485c3

Please sign in to comment.