|
|
@@ -1124,7 +1124,9 @@ func (as *AllocationSet) AggregateBy(aggregateBy []string, options *AllocationAg
|
|
|
for _, alloc := range aggSet.allocations {
|
|
|
for _, sharedAlloc := range shareSet.allocations {
|
|
|
if _, ok := shareCoefficients[alloc.Name]; !ok {
|
|
|
- log.Warningf("AllocationSet.AggregateBy: error getting share coefficienct for '%s'", alloc.Name)
|
|
|
+ if !alloc.IsIdle() {
|
|
|
+ log.Warningf("AllocationSet.AggregateBy: error getting share coefficienct for '%s'", alloc.Name)
|
|
|
+ }
|
|
|
continue
|
|
|
}
|
|
|
|