2019-01-24 20:15:10 +00:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
2018-09-20 20:08:43 +01:00
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
syntax = "proto3";
|
2018-09-21 19:48:54 +01:00
|
|
|
option go_package = "pb";
|
2019-07-10 22:27:46 +01:00
|
|
|
import "gogo.proto";
|
|
|
|
import "google/protobuf/timestamp.proto";
|
2018-09-21 19:48:54 +01:00
|
|
|
|
|
|
|
package repair;
|
2018-09-20 20:08:43 +01:00
|
|
|
|
|
|
|
// InjuredSegment is the queue item used for the data repair queue
|
|
|
|
message InjuredSegment {
|
2019-07-11 18:26:07 +01:00
|
|
|
bytes path = 1;
|
2018-09-20 20:08:43 +01:00
|
|
|
repeated int32 lost_pieces = 2;
|
2019-07-10 22:27:46 +01:00
|
|
|
google.protobuf.Timestamp inserted_time = 3 [(gogoproto.stdtime) = true, (gogoproto.nullable) = false];
|
2018-09-20 20:08:43 +01:00
|
|
|
}
|