From 3514a4f063ce529954ab531e359cfb4317e8410d Mon Sep 17 00:00:00 2001 From: Chris Boulton Date: Sat, 24 Sep 2011 15:40:20 +1000 Subject: [PATCH] Move brace to new line --- lib/Resque/Worker.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/Resque/Worker.php b/lib/Resque/Worker.php index 3e7eefc..a180d27 100644 --- a/lib/Resque/Worker.php +++ b/lib/Resque/Worker.php @@ -385,7 +385,8 @@ class Resque_Worker * Signal handler for SIGPIPE, in the event the redis connection has gone away. * Attempts to reconnect to redis, or raises an Exception. */ - public function reestablishRedisConnection() { + public function reestablishRedisConnection() + { $this->log('SIGPIPE received; attempting to reconnect'); Resque::redis()->establishConnection(); }