summaryrefslogtreecommitdiff
path: root/dashboard_website/datastructs.py
diff options
context:
space:
mode:
authorAnson Bridges <bridges.anson@gmail.com>2023-11-18 06:58:48 -0500
committerAnson Bridges <bridges.anson@gmail.com>2023-11-18 06:58:48 -0500
commitdf8b3c455adc0d2751bd13a6fbed89a1144ef934 (patch)
treee3a1c89f330f0828bb78e7b0eeb0fa71b65024ad /dashboard_website/datastructs.py
parentfb895bcbe94b1e52fef5b960131aacfdc9c1987e (diff)
remove timeout
Diffstat (limited to 'dashboard_website/datastructs.py')
-rw-r--r--dashboard_website/datastructs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/dashboard_website/datastructs.py b/dashboard_website/datastructs.py
index e5346dc..cc51156 100644
--- a/dashboard_website/datastructs.py
+++ b/dashboard_website/datastructs.py
@@ -1,7 +1,7 @@
import time, math
# time since last ping before deactivating/deleting
-BIKE_TIMEOUT = 60 # 3 minutes
-BIKE_DELETE = 300 # time before bike deletes itself
+BIKE_TIMEOUT = 60000 # 3 minutes
+BIKE_DELETE = 360000 # time before bike deletes itself
# data structures
class Point: