vote up 1 vote down star

Hi, I've had some problems with a Django application after I deployed it. I use a Apache + mod-wsgi on a ubuntu server. A while after I reboot the server the time goes foobar, it's wrong by around -10 hours. I made a Django view that looks like:

def servertime():
  return HttpResponse( datetime.now() )

and after I reboot the server and check the url that shows that view it first looks alright. Then at one point it sometimes gives the correct time and sometimes not and later it gives the wrong time always. The server time is corect though.

Any clues? I've googled it without luck.

flag
Is it exactly 10 hours? Could be a timezone issue. – coonj May 19 at 16:44

4 Answers

vote up 6 vote down

Can I see your urls.py as well?

Similar behaviors stumped me once before...

What it turned out to be was the way that my urls.py called the view. Python ran the datetime.now() once and stored that for future calls, never really calling it again. This is why django devs had to implement the ability to pass a function, not a function call, to a model's default value, because it would take the first call of the function and use that until python is restarted.

Your behavior sounds like the first time is correct because its the first time the view was called. It was incorrect at times because it got that same date again. Then it was randomly correct again because your apache probably started another worker process for it, and the craziness probably happens when you get bounced in between which process was handling the request.

link|flag
vote up 1 vote down

Maybe the server is evaluating the datetime.now() at server start, try making it lazy through a template or use a variable in your view.

Take a look at this blog post.

link|flag
vote up 1 vote down check

I found that putting wsgi in daemon mode works. Not sure why, but it did. Seems like some of the newly created processes gets the time screwed up.

link|flag
2  
Most likely because you were running some other web application at the same time in Apache, such as PHP, and that application was changing the timezone to be another value and screwing with the Django application. This issue is documented in mod_wsgi documentation at code.google.com/p/modwsgi/…. – Graham Dumpleton Jul 2 at 23:04
vote up 0 vote down

you may need to specify the content type like so

def servertime():
  return HttpResponse( datetime.now(), content_type="text/plain" )

another idea:

it may not be working because datetime.now() returns a datetime object. Try this:

def servertime():
  return HttpResponse( str(datetime.now()), content_type="text/plain" )
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.