# File lib/mcollective/rpc/actionrunner.rb, line 91
      def load_json_results(file)
        return {} unless File.readable?(file)

        JSON.load(File.read(file)) || {}
      rescue JSON::ParserError
        {}
      end