Skip to content

Commit 479c8f6

Browse files
[IG-14339] [DOC] Fix previous PR 460 commit - apply Go error-message restrictions
1 parent 3f52444 commit 479c8f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/tsdb/schema/schema.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ func validateAggregatesGranularity(aggregationGranularity string, partitionInter
190190
if hasAggregates {
191191
partitionIntervalDuration, _ := utils.Str2duration(partitionInterval) // safe to ignore error since we create 'partitionInterval'
192192
if partitionIntervalDuration/duration > MaxV3ioArraySize {
193-
return errors.New("The size of the aggregation-granularity interval isn't sufficiently larger than the specified ingestion rate. Try increasing the granularity to get the expected pre-aggregation performance impact.")
193+
return errors.New("the size of the aggregation-granularity interval isn't sufficiently larger than the specified ingestion rate. Try increasing the granularity to get the expected pre-aggregation performance impact")
194194
}
195195
}
196196
return nil

0 commit comments

Comments
 (0)