Skip to content

Commit 2d6ed7a

Browse files
committed
Fixes the "two entries" bug by picking only the last row by ID, not by device_time
1 parent 6834747 commit 2d6ed7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

smart_incubator/server/smart_controller.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def retrieve_last_line(self, incubator):
145145
"""
146146
"""
147147
if incubator == 'all' or incubator < 0:
148-
select_query = "SELECT * FROM incubators.incubators WHERE device_time IN (SELECT MAX(device_time) FROM incubators.incubators GROUP BY inc_id) ORDER BY ABS(inc_id);"
148+
select_query = "SELECT * FROM incubators.incubators WHERE id IN ( SELECT MAX(id) FROM incubators.incubators GROUP BY inc_id) ORDER BY ABS(inc_id);"
149149
data = self.query(select_query)
150150

151151
else:

0 commit comments

Comments
 (0)