Skip to content
Snippets Groups Projects
Commit 52b768d7 authored by Prathamesh Joshi's avatar Prathamesh Joshi
Browse files

lloidhandler.py: Change count_tracker to get remove_counts_times from correct...

parent ee76aa39
No related branches found
No related tags found
1 merge request!229lloidhandler.py: Change count_tracker to get remove_counts_times from correct...
Pipeline #419193 passed with warnings
......@@ -987,8 +987,8 @@ class LLOIDTracker:
def web_get_remove_counts(self):
with self.lock:
if self.remove_counts != []:
string = ",".join(str(x) for x in self.remove_counts)
if len(self.rankingstat.denominator.remove_counts_times) > 0:
string = ",".join(str(x) for x in self.rankingstat.denominator.remove_counts_times)
yield "gps_time=%s\n" % string
else:
yield "gps_time=\n"
......@@ -999,7 +999,7 @@ class LLOIDTracker:
gps_time = bottle.request.forms["gps_time"]
if gps_time is not None:
self.remove_counts_times.append(int(gps_time))
self.rankingstat.denominator.remove_counts_times.append(int(gps_time))
self.rankingstat.denominator.remove_counts_times = numpy.append(self.rankingstat.denominator.remove_counts_times, int(gps_time))
yield "OK: gps_time=%d\n" % gps_time
else:
yield "OK: gps_time=\n"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment