Skip to content

Commit f528c88

Browse files
committed
fix client side timeout logic
Signed-off-by: Praneeth Bedapudi <[email protected]>
1 parent f801c76 commit f528c88

File tree

4 files changed

+424
-195
lines changed

4 files changed

+424
-195
lines changed

fastdeploy/_infer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def get_timeout_response(
122122
{
123123
unique_id: {
124124
"-1.predicted_at": time.time(),
125-
"-1.timedout_in_queue": True,
125+
"timedout_in_queue": True,
126126
}
127127
}
128128
)

fastdeploy/_loop.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ def start_loop(
191191
while True:
192192
"""
193193
Set timedout_in_queue to True for all the predictions that have been in the queue for more than timeout_time seconds
194-
and delete older than 7 seconds predictions that have finished prediction
194+
and delete older than 30 seconds predictions that have finished prediction
195195
"""
196196

197197
timedout_in_queue_unique_ids = _utils.MAIN_INDEX.search(
@@ -214,7 +214,7 @@ def start_loop(
214214
query={
215215
"$and": [
216216
{"-1.predicted_at": {"$gt": 0}},
217-
{"-1.predicted_at": {"$lt": time.time() - 7}},
217+
{"-1.predicted_at": {"$lt": time.time() - 30}},
218218
]
219219
},
220220
)

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
1919
AUTHOR = "BEDAPUDI PRANEETH"
2020
REQUIRES_PYTHON = ">=3.6.0"
21-
VERSION = "3.0.23"
21+
VERSION = "3.0.24"
2222

2323
# What packages are required for this module to be executed?
2424
REQUIRED = ["falcon", "liteindex==0.0.3.2.dev4", "zstandard", "gunicorn[gevent]", "msgpack"]

0 commit comments

Comments
 (0)