mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 16:34:30 +01:00
accounting: fix startTime of statsGroups.sum
This commit is contained in:
parent
1cc6dd349e
commit
d2050523de
@ -2,9 +2,8 @@ package accounting
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"sync"
|
|
||||||
|
|
||||||
"github.com/rclone/rclone/fs/rc"
|
"github.com/rclone/rclone/fs/rc"
|
||||||
|
"sync"
|
||||||
|
|
||||||
"github.com/rclone/rclone/fs"
|
"github.com/rclone/rclone/fs"
|
||||||
)
|
)
|
||||||
@ -349,6 +348,7 @@ func (sg *statsGroups) names() []string {
|
|||||||
|
|
||||||
// sum returns aggregate stats that contains summation of all groups.
|
// sum returns aggregate stats that contains summation of all groups.
|
||||||
func (sg *statsGroups) sum(ctx context.Context) *StatsInfo {
|
func (sg *statsGroups) sum(ctx context.Context) *StatsInfo {
|
||||||
|
startTime := GlobalStats().startTime
|
||||||
sg.mu.Lock()
|
sg.mu.Lock()
|
||||||
defer sg.mu.Unlock()
|
defer sg.mu.Unlock()
|
||||||
|
|
||||||
@ -377,6 +377,7 @@ func (sg *statsGroups) sum(ctx context.Context) *StatsInfo {
|
|||||||
}
|
}
|
||||||
stats.mu.RUnlock()
|
stats.mu.RUnlock()
|
||||||
}
|
}
|
||||||
|
sum.startTime = startTime
|
||||||
return sum
|
return sum
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user