Skip to content

Commit 56e47a9

Browse files
authored
Changed time interval to be inclusive on both sides (#207)
Fixes #205
2 parents 6e553a8 + c994d0d commit 56e47a9

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

RELEASE_NOTES.md

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ This update focuses on pagination.
77
## Upgrading
88

99
* Updated to the latest common-api which provides slighlty modified pagination messages.
10+
* The `TimeIntervalFilter` is now inclusive on both ends.
1011

1112
## New Features
1213

proto/frequenz/api/dispatch/v1/dispatch.proto

+1-1
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ message TimeIntervalFilter {
206206
// Filter by time >= this timestamp.
207207
google.protobuf.Timestamp from = 1;
208208

209-
// Filter by time < this timestamp.
209+
// Filter by time <= this timestamp.
210210
google.protobuf.Timestamp to = 2;
211211
}
212212

0 commit comments

Comments
 (0)