Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
8d0a5eba
Unverified
Commit
8d0a5eba
authored
Oct 24, 2025
by
Yan Ru Pei
Committed by
GitHub
Oct 24, 2025
Browse files
chore: don't error on failure to download snapshot (#3871)
Signed-off-by:
PeaBrane
<
yanrpei@gmail.com
>
parent
8354d325
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
lib/llm/src/kv_router/subscriber.rs
lib/llm/src/kv_router/subscriber.rs
+3
-3
No files found.
lib/llm/src/kv_router/subscriber.rs
View file @
8d0a5eba
...
@@ -226,9 +226,9 @@ pub async fn start_kv_router_background(
...
@@ -226,9 +226,9 @@ pub async fn start_kv_router_background(
}
}
tracing
::
info!
(
"Successfully sent all initial events to indexer"
);
tracing
::
info!
(
"Successfully sent all initial events to indexer"
);
}
}
Err
(
e
)
=>
{
Err
(
_
)
=>
{
tracing
::
info
!
(
tracing
::
debug
!
(
"
Did not initialize radix state from NATS object store (likely no snapshots yet): {e:?}
"
"
Failed to download snapshots. This is normal for freshly started Router replicas.
"
);
);
}
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment