class Nomad::JobValidation

Public Instance Methods

errored?() click to toggle source

Determines if the validation errored. @return [Boolean]

# File lib/nomad/api/validate.rb, line 44
def errored?
  return !self.error.nil? || !self.validation_errors.empty?
end