Please use this test script instead

On Monday, 10 June 2013 15:12:56 UTC+2, Graeme Pyle wrote:
>
> I am getting this error about 20% of the time. I've dumped and compared 
> traffic on successful and failed requests and there is no noticeable 
> difference:
>
>
> <https://lh4.googleusercontent.com/-GnApPdHPlvM/UbXQlA3uCyI/AAAAAAAAF3w/fUa3uN1wO6s/s1600/comparison.png>
>
> There's nothing in the AppEngine logs or dashboard, and also no way to 
> catch exceptions on requests that hit "/_ah" URLs. I've attached a script 
> that tries the login every 5 minutes, as well as the traffic dumps for 
> successful and failed requests.
>
> I would really appreciate it if someone from Google could take a look at 
> this. The error definitely occurs deep in the bowls of the AppEngine OpenID 
> implementation and there is no way for an outsider to see such errors.
>
> Thanks, Graeme
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


#!/bin/bash

cd `dirname $0`

TIMESTAMP=`date +"%Y%m%d-%H%M"`

/usr/sbin/tcpdump -w $TIMESTAMP.dump -s 0 port 80 &

rm cookies

curl -L --cookie-jar cookies "http://ami-mooc-pilot-dev.appspot.com/_ah/login_redir?claimid=http://dev.africanmanagers.org&continue=http://ami-mooc-pilot-dev.appspot.com/preview"; > $TIMESTAMP.1.out



FORM_ID=`grep form_build_id $TIMESTAMP.1.out| tail -1 | awk -F\" '{ print $6 }'`


echo Form ID: $FORM_ID

curl -L --cookie cookies --data "name=Graeme+Pyle&pass=alanis&form_build_id=$FORM_ID&form_id=user_login&op=Log+in" "http://dev.africanmanagers.org/user/login?destination=openid/provider/continue"; > $TIMESTAMP.2.out

grep graemep.me $TIMESTAMP.2.out && touch $TIMESTAMP.success || touch touch $TIMESTAMP.error

killall tcpdump

Reply via email to