patternMajor
Is it possible to disable new version checking in pgAdmin 4?
Viewed 0 times
pgadminnewversiondisablecheckingpossible
Problem
New versions of pgAdmin 4 are being released every month, and it's so annoying to see a popup with notification about another update. There's no option in preferences to disable it. Is there a trick to disable this particular popup, except installing the new version?
Solution
Add this line to
Note:
The location of
If the
config_local.py and restart the pgadmin4:UPGRADE_CHECK_ENABLED=FalseNote:
The location of
config_local.py is same as config.py. You can find the location of config.py with this command in linux:$ find / -wholename "*/web/config.py" 2>/dev/nullIf the
config_local.py file doesn't exist yet, you can create one.Code Snippets
UPGRADE_CHECK_ENABLED=False$ find / -wholename "*/web/config.py" 2>/dev/nullContext
StackExchange Database Administrators Q#232145, answer score: 20
Revisions (0)
No revisions yet.