Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
picodata
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
core
picodata
Merge requests
!1286
fix: add tier parameter to get_vshard_config proc
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fix: add tier parameter to get_vshard_config proc
kusancho/september/proc_vshard_config
into
master
Overview
3
Commits
1
Pipelines
6
Changes
4
All threads resolved!
Hide all comments
Merged
Alexander Kurdakov
requested to merge
kusancho/september/proc_vshard_config
into
master
6 months ago
Overview
3
Commits
1
Pipelines
6
Changes
4
All threads resolved!
Hide all comments
Expand
Summary
fix: add tier parameter to get_vshard_config proc
Cherry-pick to: none
Close
#900 (closed)
Docs follow-up:
docs#354 (closed)
Edited
6 months ago
by
Alexander Kurdakov
0
0
Merge request reports
Compare
master
version 5
2d49d806
6 months ago
version 4
a48d54ad
6 months ago
version 3
a1c448b3
6 months ago
version 2
48b44280
6 months ago
version 1
21d0c7de
6 months ago
master (base)
and
latest version
latest version
ac50ea52
1 commit,
6 months ago
version 5
2d49d806
1 commit,
6 months ago
version 4
a48d54ad
1 commit,
6 months ago
version 3
a1c448b3
1 commit,
6 months ago
version 2
48b44280
1 commit,
6 months ago
version 1
21d0c7de
1 commit,
6 months ago
4 files
+
105
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
src/traft/error.rs
+
2
−
0
Options
@@ -74,6 +74,8 @@ pub enum Error {
NoSuchInstance
(
Result
<
RaftId
,
InstanceId
>
),
#[error(
"replicaset with {}
\"
{id}
\"
not found"
,
if
*.
id_is_uuid
{
"replicaset_uuid"
}
else
{
"replicaset_id"
}
)]
NoSuchReplicaset
{
id
:
String
,
id_is_uuid
:
bool
},
#[error(
"tier with name
\"
{0}
\"
not found"
)]
NoSuchTier
(
String
),
#[error(
"address of peer with id {0} not found"
)]
AddressUnknownForRaftId
(
RaftId
),
#[error(
"address of peer with id
\"
{0}
\"
not found"
)]
Loading