Skip to content
This repository has been archived by the owner on Nov 13, 2018. It is now read-only.

Commit

Permalink
Missed one time format change
Browse files Browse the repository at this point in the history
  • Loading branch information
PSUdaemon committed Oct 2, 2015
1 parent 1f5de5e commit 9fba1ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion traffic_stats/traffic_stats.go
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ func getToData(config StartupConfig, init bool, configChan chan RunningConfig) {
if err != nil {
errHndlr(err, ERROR)
} else {
lastSummaryTime, err := time.Parse("2006-01-02 15:04:05", lastSummaryTimeStr)
lastSummaryTime, err := time.Parse(time.RFC3339, lastSummaryTimeStr)
if err != nil {
errHndlr(err, ERROR)
} else {
Expand Down

0 comments on commit 9fba1ae

Please sign in to comment.