From d6767dd400b10c81b6432fcaf2e1289ac3696c9e Mon Sep 17 00:00:00 2001 From: David Schmitt Date: Thu, 21 Sep 2023 14:30:33 +0200 Subject: [PATCH] Add a deadline to LoadBookmarks Since loading bookmarks executes queries, it also needs to have a deadline --- gateway.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gateway.proto b/gateway.proto index f32ac5a..1d95252 100644 --- a/gateway.proto +++ b/gateway.proto @@ -147,6 +147,8 @@ message LoadBookmark { bytes msgID = 2; // set to true to force fetching fresh data bool ignoreCache = 3; + // The time at which the gateway should stop processing the queries spawned by this request + timestamp deadline = 4; } message BookmarkLoadResult {