ood_core 0.24.0 → 0.24.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d5a2f83340f4dad3b9de58e0b5db178e2ec8566da3f28e717405c2692477d49d
4
- data.tar.gz: f63183676134dd3b410fa4bf24ea84a3c1e16ccae8efd02bdec0174ec0dee30b
3
+ metadata.gz: 2d7ae635ec6299414feac4de3589bea126a97cd427507bd99242f0bcb79553b4
4
+ data.tar.gz: 29855a0d0573e1d51fe6ebf7a0679c37993c608f77e45f804f6851d84160620c
5
5
  SHA512:
6
- metadata.gz: 3f356e6fa7d39314ae4092533fcadc7dcd062911875b3d3cf934612015fbdac1be55be66436ffa30ad8e14077c30717fe54ff5d8d4fc7699bc57c9f04ad7570f
7
- data.tar.gz: 22c2606e3449c338a3c9dfae4e9f8b5c60a8c172072859dc0aa5ac79be3779dcf337d30a8d351e9273356c74cdc19a235f9267c06aab0405511049971f3fe206
6
+ metadata.gz: 6b93ec8179ffca892538e5bdd8bcc1eae6adceac3a2d898079c7f8f3a60d5cd04ac64569e71ba0af2fb9ab9833a9b7f6d0c1f845cde1487eaf3d9c8f90b382d8
7
+ data.tar.gz: 2919276a9ade663afce93339602304f0fc727fa392d6f711f0166b82003c51e8765520603c93047919e4f1d1b81104723fd5ac05c760e891e90ab3a13a5d1c8e
data/CHANGELOG.md CHANGED
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.24.1] - 11-29-2023
11
+
12
+ [820](https://github.com/OSC/ood_core/pull/820) Reverts [818](https://github.com/OSC/ood_core/pull/818)
13
+
10
14
  ## [0.24.0] - 11-28-2023
11
15
 
12
16
  - Code cleanup and separate arguments with whitespace in Fujitsu TCS adapter by @mnakao in https://github.com/OSC/ood_core/pull/808
@@ -165,9 +165,9 @@ module OodCore
165
165
  # @return [Boolean, nil] whether cluster supports SSH to batch connect node
166
166
  def batch_connect_ssh_allow?
167
167
  return @batch_connect_ssh_allow if defined?(@batch_connect_ssh_allow)
168
- return @batch_connect_ssh_allow = true if batch_connect_config.nil?
168
+ return @batch_connect_ssh_allow = nil if batch_connect_config.nil?
169
169
 
170
- @batch_connect_ssh_allow = batch_connect_config.fetch(:ssh_allow, true)
170
+ @batch_connect_ssh_allow = batch_connect_config.fetch(:ssh_allow, nil)
171
171
  end
172
172
 
173
173
  # The comparison operator
@@ -1,4 +1,4 @@
1
1
  module OodCore
2
2
  # The current version of {OodCore}
3
- VERSION = "0.24.0"
3
+ VERSION = "0.24.1"
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ood_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.24.0
4
+ version: 0.24.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Franz
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: exe
12
12
  cert_chain: []
13
- date: 2023-11-28 00:00:00.000000000 Z
13
+ date: 2023-11-29 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: ood_support