-
Notifications
You must be signed in to change notification settings - Fork 969
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mount: restart mount process gracefully #4392
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #4392 +/- ##
==========================================
- Coverage 56.00% 55.31% -0.70%
==========================================
Files 156 157 +1
Lines 40417 41094 +677
==========================================
+ Hits 22636 22731 +95
- Misses 15262 15836 +574
- Partials 2519 2527 +8 ☔ View full report in Codecov by Sentry. |
1f3aeaa
to
22e4602
Compare
# Conflicts: # cmd/mount_test.go
Badger does not support smooth upgrades because only one database connection can be active at a time. |
5b7fe1e
to
4f86aae
Compare
pkg/meta/base.go
Outdated
m.sid = uint64(v) | ||
if err = m.en.doNewSession(m.newSessionInfo()); err != nil { | ||
return fmt.Errorf("create session: %s", err) | ||
if err := m.en.doNewSession(m.newSessionInfo()); err != nil { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should use existing session
No description provided.