Re: [google-appengine] Re: dev_appserver now compatible with Cloud Datastore Emulator.

2018-06-20 Thread 'Kai Wang' via Google App Engine
_appserver currently prunes shell env vars from local golang runtime process. The '--env_var' flag allows you to pass environment variable to the local go runtime process. On Tue, Jun 19, 2018 at 5:54 PM Kai Wang wrote: > Hi Giuliano, > > Note that, for app engine standard runtime go, the re

Re: [google-appengine] Re: dev_appserver now compatible with Cloud Datastore Emulator.

2018-06-19 Thread 'Kai Wang' via Google App Engine
rn3470jyqdp1sxp2wwgn/T/appengine.None.gribeiro/datastore.db, > remove DATASTORE_EMULATOR_HOST from environment variables and restart > dev_appserver > > And my app still writing/reading from the cloud. > > On Wednesday, May 30, 2018 at 6:55:32 PM UTC+1, Kai Wang wrote: >> >>

[google-appengine] Re: dev_appserver now compatible with Cloud Datastore Emulator.

2018-05-30 Thread 'Kai Wang' via Google App Engine
oogle Cloud Client Library), should be able to connect to the datatore emulator, no matter the code runs inside or outside of the dev_appserver. Please check the env var and lmk if they work :) On Wednesday, May 30, 2018 at 6:39:05 AM UTC-7, Giuliano Ribeiro wrote: > > Hi Kai Wang, I'm usin

[google-appengine] Re: dev_appserver now compatible with Cloud Datastore Emulator.

2018-05-29 Thread 'Kai Wang' via Google App Engine
Hi Glullano, What go libraries are you using? Is it google.golang.org/appengine/datastore (link ) ? Did it store locally before? You can email k...@google.com for further details :) On Friday, May 25, 2018 at 9:04:42

[google-appengine] Re: dev_appserver now compatible with Cloud Datastore Emulator.

2018-05-19 Thread 'Kai Wang' via Google App Engine
Hi Viataly, This change alone does not affect testbed. But we do plan to allow testbed to use datastore emulator too. Please stay tuned :) On Thursday, May 17, 2018 at 1:54:22 PM UTC-7, Vitaly Bogomolov wrote: > > Hi, Steren > > Our goal is to enable it by default in the future. >> > > Good

[google-appengine] Re: Issue with invalid SSL certificate

2018-01-22 Thread 'Kai Wang' via Google App Engine
Cool. By saying "have to roll revert back", do you mean this issue is already solved in your current version of cloud sdk, without swapping urlfetch_cacerts.txt ? Thanks. On Monday, January 22, 2018 at 6:07:50 AM UTC-8, Richard Cheesmar wrote: > > kai, > > I wi

[google-appengine] Re: Issue with invalid SSL certificate

2018-01-21 Thread 'Kai Wang' via Google App Engine
for URL: ' + url) SSLCertificateError: Invalid and/or missing SSL certificate for URL: https://accounts.google.com/o/oauth2/token Your help will be sincerely appreciated. On Saturday, January 20, 2018 at 12:05:56 PM UTC-8, Richard Cheesmar wrote: > > Hi, kai, > > Chezs-MacBook-Air:g

[google-appengine] Re: [Google Cloud Insiders] Transitioning from Google App Engine SDK to gcloud, what to expect

2017-09-25 Thread 'Kai Wang' via Google App Engine
Thanks for the transition doc. If you find any app engine SDK's feature missing in gcloud, feel free to reach out to us! +Patrick: > Which App Engine language are you using? Seems to be Python. On Mon, Sep 25, 2017 at 6:35 AM, 'Patrick Flynn' via Google Cloud Insiders <

[google-appengine] Re: Cron job runs successfully on local development server but fails after deployed

2017-09-08 Thread Kai Zhou
Thanks George! This is just the problem. 在 2017年9月8日星期五 UTC+8上午1:46:49,George (Cloud Platform Support)写道: > > Hello Zhou, > > None of your two projects seem to have a task queue; no queue is visible > in the Developers' Console. Without a queue, you get the > "UnknownQueueError" error

[google-appengine] Cron job runs successfully on local development server but fails after deployed

2017-09-07 Thread Kai Zhou
I include a cron job in my app. The following is the cron.yaml: cron: - description: monitor the spot every 60 seconds url: /task/cron schedule: every 1 minutes And here is the handler for "/task/cron": class CronHandler(webapp2.RequestHandler): def get(self): courses =

[google-appengine] Re: Help! I can't add my email account to Email API authorized senders.

2017-09-06 Thread Kai Zhou
; list'. Try to login as that account and add the account. > > On Wednesday, September 6, 2017 at 9:48:04 AM UTC-4, Kai Zhou wrote: >> >> I am trying to set up the email sending feature in google app engine. I >> want to send emails through the address associates with my do

[google-appengine] Help! I can't add my email account to Email API authorized senders.

2017-09-06 Thread Kai Zhou
I am trying to set up the email sending feature in google app engine. I want to send emails through the address associates with my domain admin@[mydomain].com. I try to edit the setting in the follow page:

[google-appengine] Problems with SSL on a custom domain

2015-08-21 Thread Kai van Duuren
We are having problems serving our web app on App Engine with SSL on a custom domain. We had followed the instructions for uploading a certificate to a custom domain via the admin console. This had been working without problems for several weeks, but since yesterday we have been observing some

[google-appengine] Re: Launcher can't connect to App Engine servers

2013-01-23 Thread Kai Skye
My problem was that I had environment variables named `http_proxy` and `https_proxy` set that Python's urllib2 uses to route all connections through a proxy. Removing those environment variables fixes the issue. On Wednesday, January 23, 2013 12:13:05 AM UTC-5, Kai Skye wrote: My website has

[google-appengine] Launcher can't connect to App Engine servers

2013-01-22 Thread Kai Skye
My website has been running fine for a month. There isn't anything abnormal in the admin console or server logs. However, since early today, whenever I try to deploy my website from Launcher, I receive this error: 12:03 AM Getting current resource limits. 2013-01-23 00:03:31,413 ERROR

[google-appengine] GAE 1.6 can not find python2.7 in Mac OSX 10.7.2

2011-11-08 Thread Kai
GAE in my Mac OSX 10.7.2 system was updated to 1.6.0 by its auto-updater. In the GoogleAppEngineLauncher, I have changed the Python Path to /usr/bin/python2.7 from the Preferences, the logs display that the GAE still run in python2.6. Here are the Logs: *** Running dev_appserver with the

[google-appengine] GAE 1.6 can not import module jinja2

2011-11-08 Thread Kai
/appengine/tools/dev_appserver_import_hook.py, line 1571, in LoadModuleRestricted description) File /Users/kai/Documents/AppEngine/helloworld/helloworld.py, line 1, in module import jinja2 ImportError: No module named jinja2 How can I use jjinja2 template engine in the GAE 1.6 SDK? -- You

[google-appengine] Re: GAE 1.6 can not import module jinja2

2011-11-08 Thread Kai
Thank you, Matt and Brian. Actually, I have not installed jinja2 in my system. I will try to fixed this minor issue and finish the tutorial guild. :) On Nov 9, 7:39 am, Brian Quinlan bquin...@google.com wrote: As Matt says, you need to install jinja2 on your local Python instance. This will be

[google-appengine] Re: GAE 1.6 can not find python2.7 in Mac OSX 10.7.2

2011-11-08 Thread Kai
 am very happy with how easy it was. On Nov 8, 3:40 pm, Kai yikai.1...@gmail.com wrote: GAE in my Mac OSX 10.7.2 system was updated to 1.6.0 by its auto-updater. In the GoogleAppEngineLauncher, I have changed the Python Path to /usr/bin/python2.7 from the Preferences, the logs display

[google-appengine] Re: GAE 1.6 can not find python2.7 in Mac OSX 10.7.2

2011-11-08 Thread Kai
This issue has been opened here: http://code.google.com/p/google-appengine-mac-launcher/issues/detail?id=4 Hit the Enter key in the text field will solve this problem. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion

[google-appengine] Failed to run grails test-app -unit

2010-09-06 Thread Hu Kai
Everytime I run grails test-app -unit I got following the stacktrace I attached, but app can be successfully deployed on google app My peristence.xml is this : ?xml version=1.0 encoding=UTF-8 ? persistence xmlns=http://java.sun.com/xml/ns/persistence;

[google-appengine] Re: appcfg.py update_cron Server Error (500)

2009-04-17 Thread Kai
. A fix should be out next week, I hope. Anthony On Apr 16, 1:33 am, Kai yikai.1...@gmail.com wrote: I am testing my new GAE app with thecronjob functionality. Everything works fine in my local SDK environment. But when updating my python code to GAE server, the error occur