Fix for meminterval not using specified interval
authorJeremy Brown <jeremy@tenfourty.com>
Tue, 2 Aug 2016 17:48:07 +0000 (19:48 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 2 Aug 2016 17:48:07 +0000 (19:48 +0200)
commitd7f364c27e3adc4e012ee07e71f1c5ad5cfeb56f
treee521a284bcf40e9c30fba43c01d2dd621a73a8e4
parent5824e80932fd243c429cdae5b15f39402f392673
Fix for meminterval not using specified interval

Hugo seems to ignore the meminterval I specify and always uses it's default of 100ms.
This seems to be because Hugo tries to take the meminterval from the command line
(an Int) and converts it to a String and passes it to time.ParseDuration. If you pass a
different meminterval (such as `1000` as above) it will fail (time.ParseDuration requires
some units) and use the default instead.

Changed `meminterval` to be a String and added better documentation for valid time units.

Resolves: #2325
commands/server.go