From f2beb09e8fcc3b301cd1afac5a4b5408821206ab Mon Sep 17 00:00:00 2001 From: Zachary Puls Date: Wed, 13 Sep 2017 10:12:42 -0500 Subject: Fix issue where "email" JSON field is not being passed through from REST API to worker. This allows for Gitlab (or another Git UI) to properly display the commit author. --- lib/oxidized/node.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/oxidized/node.rb') diff --git a/lib/oxidized/node.rb b/lib/oxidized/node.rb index 4f9ae54..2b15d4e 100644 --- a/lib/oxidized/node.rb +++ b/lib/oxidized/node.rb @@ -6,7 +6,7 @@ module Oxidized class ModelNotFound < OxidizedError; end class Node attr_reader :name, :ip, :model, :input, :output, :group, :auth, :prompt, :vars, :last, :repo - attr_accessor :running, :user, :msg, :from, :stats, :retry + attr_accessor :running, :user, :email, :msg, :from, :stats, :retry alias :running? :running def initialize opt @@ -121,7 +121,7 @@ module Oxidized end def reset - @user = @msg = @from = nil + @user = @email = @msg = @from = nil @retry = 0 end -- cgit v1.2.1