im kinda confused, did u register 2 robot in appspot? doesnt the wave server still cached both of them?
anyway, my robot has no production version, and im the only user who is using/testing it. so its not really a problem of having 2 version, i only have 1 version and i want to keep changing the code on that version since im the only user using it. or r u suggesting that i should keep deploying it as a new version to appspot and settign it to default? On Jul 7, 6:51 pm, Raphaël Pinson <[email protected]> wrote: > On Wed, Jul 7, 2010 at 10:39 AM, Alex <[email protected]> wrote: > > i make some code change to my robot, deploy it to app engine. > > wave just keep using the cached version of my robot. > > > i checked the app engine version for the robot, i only have 1 version > > and its set as default. > > and that version number is the same as my appengine-web.xml > > > since capabilities.xml is automatically generated, how do i tell the > > wave server that my code has changed? > > > can we have an option to indicate whether we want the cache feature to > > apply to our robot? > > > this is very frustrating when the robot is still in development stage. > > You can use several versions of the app when you're doing development. This > is how I do it: > > * I use several branches in my VCS (bzr in my case), for example > "flammard-v4" and "flammard-v5", where v4 is the production version and v5 > is the development version ; > * I set the app version in app.yaml for each branch (respectively 4 and 5) ; > * In my code, I set a variable for the version number and a boolean for > production, for example VERSION='4' and PRODUCTION=True ; > * When PRODUCTION is True, the bot is [email protected] and the URL used > for HTTP requests ishttp://flammard.appspot.com/%path, when PRODUCTION is > False however, the bot is [email protected] and the URL > is http://$VERSION.latest.flammard.appspot.com/%path > * I deploy both versions to appengine and set the production version using > the Versions tab. > > This way, my users can use the production version and I can test the dev > version at the same time. > > Regards > > Raphaël > > > -- > > You received this message because you are subscribed to the Google Groups > > "Google Wave API" group. > > To post to this group, send email to [email protected]. > > To unsubscribe from this group, send email to > > [email protected]<google-wave-api%[email protected]> > > . > > For more options, visit this group at > >http://groups.google.com/group/google-wave-api?hl=en. -- You received this message because you are subscribed to the Google Groups "Google Wave API" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-wave-api?hl=en.
