HiveBrain v1.2.0
Get Started
← Back to all entries
patternMajor

Is it possible to disable new version checking in pgAdmin 4?

Submitted by: @import:stackexchange-dba··
0
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 config_local.py and restart the pgadmin4:

UPGRADE_CHECK_ENABLED=False


Note:
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/null


If 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/null

Context

StackExchange Database Administrators Q#232145, answer score: 20

Revisions (0)

No revisions yet.