summaryrefslogtreecommitdiffstats
path: root/whine.pl
diff options
context:
space:
mode:
authorDylan Hardison <dylan@mozilla.com>2016-06-07 23:01:05 +0200
committerDylan Hardison <dylan@mozilla.com>2016-06-07 23:01:05 +0200
commit8102e8127abd2bc11c12defbdf1fb8d744f3517d (patch)
tree2ca2ef06f8c1ef8e1a88cc1ebf090ad215126d9e /whine.pl
parent5af5f0a5178c9c4800dc924bdb31e84161053bea (diff)
downloadbugzilla-8102e8127abd2bc11c12defbdf1fb8d744f3517d.tar.gz
bugzilla-8102e8127abd2bc11c12defbdf1fb8d744f3517d.tar.xz
Bug 1274757 - hourly whine being run every 15 minutes
Diffstat (limited to 'whine.pl')
-rwxr-xr-xwhine.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/whine.pl b/whine.pl
index e6161cfeb..a701d36a7 100755
--- a/whine.pl
+++ b/whine.pl
@@ -608,7 +608,7 @@ sub reset_timer {
my $next_run = $dbh->selectrow_array(
'SELECT ' . $dbh->sql_date_math('NOW()', '+', '?', 'MINUTE'),
undef, $minute_offset);
- $next_run = format_time($next_run, "%Y-%m-%d %R");
+ $next_run = format_time($next_run, "%Y-%m-%d %R", "UTC");
$sth = $dbh->prepare("UPDATE whine_schedules " .
"SET run_next = ? WHERE id = ?");