diff options
-rw-r--r-- | CHANGELOG | 2 | ||||
-rw-r--r-- | lib/puppet/network/handler/master.rb | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,4 +1,6 @@ 0.24.x + Fixes #1551 puppetmaster.freshness xmlrpc call returns incorrect type + Fixes #1554 - Fix exception for undefined hostname Fixed #1533 - changed permissions for man directory diff --git a/lib/puppet/network/handler/master.rb b/lib/puppet/network/handler/master.rb index 9682c460e..05ae7b9a2 100644 --- a/lib/puppet/network/handler/master.rb +++ b/lib/puppet/network/handler/master.rb @@ -24,7 +24,7 @@ class Puppet::Network::Handler # Tell a client whether there's a fresh config for it def freshness(client = nil, clientip = nil) # Always force a recompile. Newer clients shouldn't do this (as of April 2008). - Time.now + return 0 end def initialize(hash = {}) |