Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable gae python to check for updates every time I start a server in eclipse?

I just hate seeing this for 20sec every time I run my server: appcfg.py:393] Checking for updates to the SDK.

like image 795
Totty.js Avatar asked Dec 20 '10 19:12

Totty.js


2 Answers

Create or edit the file .appcfg_nag in your home directory. Edit the first line to be:

opt_in: false
like image 75
Nick Johnson Avatar answered Nov 09 '22 21:11

Nick Johnson


For anyone else looking for the answer, appcfg.py now has a command line switch:

--skip_sdk_update_check

happy coding!

like image 44
Joe Bourne Avatar answered Nov 09 '22 20:11

Joe Bourne