Sha256: d56ef9da0fceeff25cbafd98a7501ec2c9d9d19c880398f0436818446ada59f4

Contents?: true

Size: 1.03 KB

Versions: 2

Compression:

Stored size: 1.03 KB

Contents

# encoding: ascii-8bit

# Copyright 2022 Ball Aerospace & Technologies Corp.
# All Rights Reserved.
#
# This program is free software; you can modify and/or redistribute it
# under the terms of the GNU Affero General Public License
# as published by the Free Software Foundation; version 3 with
# attribution addendums as found in the LICENSE.txt
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Affero General Public License for more details.
#
# This program may also be used under the terms of a commercial or
# enterprise edition license of COSMOS if purchased from the
# copyright holder

require 'cosmos/utilities/store'

module Cosmos
  class PingModel
    # @return String ['UP' or 'DOWN']
    def self.get()
      response = Store.ping()
      response2 = EphemeralStore.ping()
      if response and response2
        return 'UP'
      else
        return 'DOWN'
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
cosmos-5.0.5 lib/cosmos/models/ping_model.rb
cosmos-5.0.4 lib/cosmos/models/ping_model.rb