Open GoogleCodeExporter opened 9 years ago
The following patch seems to be stopping the exception flow:
--- a/api/ops.py Thu Aug 06 10:51:31 2009 -0700
+++ b/api/ops.py Fri Aug 07 12:45:42 2009 -0700
@@ -577,7 +577,8 @@
context.AddBlip(raw_blip_data)
# Currently only one wavelet is sent.
- context.AddWavelet(data['wavelet'])
+ if data['wavelet']:
+ context.AddWavelet(data['wavelet'])
# Waves are not sent over the wire, but we can build the list based on the
# wave ids of the wavelets.
Original comment by chakra...@gmail.com
on 7 Aug 2009 at 7:46
Some more information:
This incoming data comes only when I was toying with the RegisterCronJob()
interface of
the robot. In that case, it seems like a bug, because it is not hitting the
correct URL
which I specified in the RegisterCronJob() function and the data is all blanks.
Please
inform how to use this interface.
Original comment by chakra...@gmail.com
on 7 Aug 2009 at 8:30
Hey keep up the great work nice
Original comment by jesuschr...@gmail.com
on 10 Aug 2009 at 9:09
Original issue reported on code.google.com by
chakra...@gmail.com
on 6 Aug 2009 at 5:32