Revision history [back]
Finally I found a solution! The problem is memcached !
Succedded to trace down the problem to
#File:askbot/models/question.py: Line 1678
html = self.get_cached_summary_html(visitor) or self.update_summary_html(visitor)
If I remove the "get_cached" part:
html = self.update_summary_html(visitor)
it work like a charm.
Stopped digging there, and with restored code I and stopped the memcache service, and suddenly everything worked.
Finally Finaly I found a solution!
The problem is memcached !
Succedded to trace down the problem to
#File:askbot/models/question.py: Line 1678
html = self.get_cached_summary_html(visitor) or self.update_summary_html(visitor)
If I remove the "get_cached" part:
html = self.update_summary_html(visitor)
it work like a charm.
Stopped digging there, and with restored code I and stopped the memcache service, and suddenly everything worked.
Finaly I found a solution! The problem is memcached !
Succedded to trace down the problem to
#File:askbot/models/question.py: Line 1678
html = self.get_cached_summary_html(visitor) or self.update_summary_html(visitor)
If I remove the "get_cached" part:
html = self.update_summary_html(visitor)
it work like a charm.
Stopped digging there, and with restored code I and stopped the memcache service, and suddenly everything everyting worked.