zeitgeist team mailing list archive
-
zeitgeist team
-
Mailing list archive
-
Message #00454
[Bug 490110] Re: bug in client.py
This bug is probably not in client.py, but rather inside
resonance_engine.py, where we generate the SQL in find_eventids(). If
you can write a test case that triggers this, then that would be great.
I don't know what Siegfrieds state of the no-more-querymancer branch is
- the SQL generation code is probably rewritten there...
--
bug in client.py
https://bugs.launchpad.net/bugs/490110
You received this bug notification because you are a member of
Zeitgeist-Engine, which is the registrant for Zeitgeist Framework.
Status in Zeitgeist Framework: New
Bug description:
Fiddling with the client.py i found this error
i will write down the code first so u might understand where the problem is
--------------------------------------------------------------------------------------------------------------------------------------------------
def insert_events(self):
self.event_dict.clear()
event = Event()
event.set_interpretation(Interpretation.VISIT_EVENT.uri)
event2 = Event()
event2.set_interpretation(Interpretation.MODIFY_EVENT.uri)
self.zg.find_event_ids_for_templates([event], self.handle_events1, [self.time*1000, (self.time+86399)*1000], num_events=50000)
#HERE I GET 9 items
self.zg.find_event_ids_for_templates([event2], self.handle_events2, [self.time*1000, (self.time+86399)*1000], num_events=50000)
#HERE I GET 13 items
self.zg.find_event_ids_for_templates([event, event2], self.handle_events, [self.time*1000, (self.time+86399)*1000], num_events=50000)
#HERE I GET 126
def handle_events1(self, x):
print len(x)
def handle_events2(self, x):
print len(x)
def handle_events(self, x=None):
print "*************", len(x)
------------------------------------------------------------------------
here the output again:
9
13
************* 126
------------------------------------------------------------------------
AFAIK 9+13=22 and not 126!
somthing is wrong combining 2 event templates
Follow ups
References