From 950d1346bf4d2cb0c471cf7d3e70628b7b4d056f Mon Sep 17 00:00:00 2001 From: Renan DelValle Date: Thu, 14 Mar 2019 15:01:58 -0700 Subject: [PATCH] Fixing style issues. --- monitors.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/monitors.go b/monitors.go index ab00432..ec1825d 100644 --- a/monitors.go +++ b/monitors.go @@ -65,11 +65,11 @@ func (m *Monitor) JobUpdateStatus(updateKey aurora.JobUpdateKey, timeout time.Duration) (aurora.JobUpdateStatus, error) { // Minimal unit is the second, if it's below a second, multiply input by seconds - if interval < 1 * time.Second { + if interval < 1*time.Second { interval *= time.Second } - if timeout < 1 * time.Second { + if timeout < 1*time.Second { timeout *= time.Second }