[google-appengine] app engine data store retrieving the deleted entities

2017-05-24 Thread Yashavanta S B
I am trying to delete all the entities of a kind. After deleting i am trying to make query on the same kind. But the thing is, even after deleting all the entities the query is giving the results with some 'n' number of rows. I know it is the HRD issue where the indexes are not deleted yet.

[google-appengine] Parameterized type com.googlecode.objectify.Key not supported.

2017-03-14 Thread Yashavanta S B
I am using Google App Engine 1.9.42, Eclipse, Objectify 4.0rc2. My Class is as follows: @Entity public class LeadActivity { @Id private Long id; private String subject; Key jobKey; //getters & setters } When I try calling the google endpoint for this class thru Eclipse, I get the

[google-appengine] Is the Google cloud endpoint API cached?

2017-03-14 Thread Yashavanta S B
Hey guys, I am trying to call an API method, but i am getting some weird exceptions. You can refer the below link. http://stackoverflow.com/questions/42785183/is-the-google-cloud-endpoint-api-cached Thanks. -- You received this message because you are subscribed to the Google Groups

[google-appengine] Re: appengine TimeZone changed

2017-03-10 Thread Yashavanta S B
server time zone also defaults to UTC, so the solution is > to not try to change it to anything and instead write your code to work the > same way in production and development (that is, to deal with times that > are in UTC). > > On Tuesday, March 7, 2017 at 12:30:20 AM UTC-5,

[google-appengine] Re: appengine TimeZone changed

2017-03-06 Thread Yashavanta S B
be > sure that the app will break once it is deployed. > > On Monday, 6 March 2017 06:20:22 UTC+1, Yashavanta S B wrote: >> >> Thanks for the reply. >> >> What about in development server? Can we change the app-engine time zone >> in development server? Because we

[google-appengine] Re: appengine TimeZone changed

2017-03-05 Thread Yashavanta S B
le.ca/search?q=app+engine+set+timezone> on the subject > for more background. > > On Friday, March 3, 2017 at 11:48:41 PM UTC-5, Yashavanta S B wrote: >> >> Hey, >> >> In ServletContextListener initialization method we are setting the JVM >> Time Zone as &g

[google-appengine] appengine TimeZone changed

2017-03-03 Thread Yashavanta S B
Hey, In ServletContextListener initialization method we are setting the JVM Time Zone as public void contextInitialized(ServletContextEvent event) { TimeZone.setDefault(TimeZone.getTimeZone("GMT+00:00")); } But when i check the Time Zone information in servlets and filters the Time Zone got

[google-appengine] Time Zone Changed

2017-03-01 Thread Yashavanta S B
Hey, In ServletContextListener initialization method we are setting Time Zone as public void contextInitialized(ServletContextEvent event) { TimeZone.setDefault(TimeZone.getTimeZone("GMT+00:00")); } But when i check the Time Zone information in servlets and filters the Time Zone got changed.

[google-appengine] How to Configure JUnit test to suggest the missing datastore-indexes?

2016-08-16 Thread Yashavanta S B
I would like to know how the JUnit test uses the datastore-indexes while doing the queries. My problem is that, I would like to track the missing datastore-indexes using the JUnit test. Is there any way to give the indexes file as an input while configuring the datastore? I don't want to