Skip to content

Commit

Permalink
Update start/finish member to be 'puppet_run_status'
Browse files Browse the repository at this point in the history
  • Loading branch information
hunner committed Apr 16, 2012
1 parent 15dd555 commit 76d061d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/puppet/util/log/queue.rb
Expand Up @@ -62,7 +62,7 @@ def initialize
def connections
return @connections if @connections
@connections = Stomp::Connection.new({:hosts => @config[:hosts]})
Puppet.notice((@message.merge({'title' => 'starting'})).to_json) if @connections
Puppet.notice((@message.merge({'puppet_run_status' => 'starting'})).to_json) if @connections
@connections
end

Expand Down Expand Up @@ -183,7 +183,7 @@ def convert_msg(msg)
v['progress']['processed'] = v['progress']['total']
end
end
message = @message.merge({'title' => 'finished'})
message = @message.merge({'puppet_run_status' => 'finished'})
end
when /.+\/.+/
begin
Expand Down

0 comments on commit 76d061d

Please sign in to comment.