2018-09-20 20:08:43 +01:00
|
|
|
// Copyright (C) 2018 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
syntax = "proto3";
|
2018-09-21 19:48:54 +01:00
|
|
|
option go_package = "pb";
|
|
|
|
|
|
|
|
package repair;
|
2018-09-20 20:08:43 +01:00
|
|
|
|
|
|
|
// InjuredSegment is the queue item used for the data repair queue
|
|
|
|
message InjuredSegment {
|
|
|
|
string path = 1;
|
|
|
|
repeated int32 lost_pieces = 2;
|
|
|
|
}
|