forked from TrueCloudLab/frostfs-api
[#149] reputation: Change SendIntermediateResultRequest.Body
Add `epoch` field to the `SendIntermediateResultRequest.Body` message. Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
This commit is contained in:
parent
028f9e8c1a
commit
b50b951dd0
1 changed files with 5 additions and 2 deletions
|
@ -68,11 +68,14 @@ message SendLocalTrustResponse {
|
||||||
message SendIntermediateResultRequest {
|
message SendIntermediateResultRequest {
|
||||||
// Request body structure.
|
// Request body structure.
|
||||||
message Body {
|
message Body {
|
||||||
|
// The number of the epoch in which the iteration was executed.
|
||||||
|
uint64 epoch = 1;
|
||||||
|
|
||||||
// Sequence number of the iteration.
|
// Sequence number of the iteration.
|
||||||
uint32 iteration = 1;
|
uint32 iteration = 2;
|
||||||
|
|
||||||
// Current global trust value computed at the specified iteration.
|
// Current global trust value computed at the specified iteration.
|
||||||
PeerToPeerTrust trust = 2;
|
PeerToPeerTrust trust = 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Body of the request message.
|
// Body of the request message.
|
||||||
|
|
Loading…
Reference in a new issue