geo_mismatch_description

in lib/gdk/diagnostic/geo.rb [64:79]


      def geo_mismatch_description
        if !geo_enabled? && geo_database_exists?
          <<~MESSAGE
            Geo is disabled in GDK, but `
          MESSAGE
        elsif geo_enabled? && !geo_secondary? && geo_database_exists?
          <<~MESSAGE
            Geo is enabled in GDK, but not as a secondary node, so `
          MESSAGE
        elsif geo_enabled? && geo_secondary? && !geo_database_exists?
          <<~MESSAGE
            Geo is enabled in GDK as a secondary, but `
          MESSAGE
        end
      end