Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion proto/opamp.proto
Original file line number Diff line number Diff line change
Expand Up @@ -866,7 +866,7 @@ message PackageDownloadDetails {
double download_percent = 1;

// The current package download rate in bytes per second.
uint64 download_bytes_per_second = 2;
double download_bytes_per_second = 2;
}

// The status of this package.
Expand Down
2 changes: 1 addition & 1 deletion specification.md
Original file line number Diff line number Diff line change
Expand Up @@ -1438,7 +1438,7 @@ It should only be set if the status is `DOWNLOADING`.
```protobuf
message PackageDownloadDetails {
double download_percent = 1;
uint64 download_bytes_per_second = 2;
double download_bytes_per_second = 2;
}
```

Expand Down
Loading