ood_core 0.4.0 → 0.5.0

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
  SHA1:
3
- metadata.gz: cdde96a0722a74c2029aa85fec797955c26af463
4
- data.tar.gz: 565037a93bc40bb5c03040b72474d1bf120cb611
3
+ metadata.gz: c5f8e7719004cb4013fba271ff78e0a8d6158bf6
4
+ data.tar.gz: 79081802e2fe4e0470abd3cc00dd4c58fc2beecf
5
5
  SHA512:
6
- metadata.gz: a4d0b4338925e8ed5dd26a55cc589cfc9ef9bd3dbe435457ea8c18a59ec8cc608affb102751acc6a719b365bdf2e4d3c92881733f34c10fd60f120f3f4e282a3
7
- data.tar.gz: d0d6ac85526748c9bfb81582877b01749b27f8f754abc6fd4e89cf64ba7156f084a3533c95ca5b8b16613ad8a2f130b842dca563874e8a4d56c0d9d69a0b8bf0
6
+ metadata.gz: 135023bc492b2f9599f918f590a694cf2428d8614aaa7a75e3b6abc7a0b2d00407cae0569a3558b2668b37c60a146c7bc2f97f54ecb60e47800fb7fab386d323
7
+ data.tar.gz: 0a33a1630e96a2e665310fc22480f85f748f6a4437823562600c40524df46535a2776d445b56731ee8ae01725b373a7f2c706eef290d9171f377fb76d78fab59
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.5.0] - 2018-04-30
11
+ ### Added
12
+ - Added missing "Waiting" state to the Torque adapter as `:queued_held`.
13
+
14
+ ### Changed
15
+ - Changed the "Waiting" state in the PBSPro adapter to `:queued_held`.
16
+
10
17
  ## [0.4.0] - 2018-04-20
11
18
  ### Changed
12
19
  - Updated Torque adapter to take into account the new `Script#native` format
@@ -117,7 +124,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
117
124
  ### Added
118
125
  - Initial release!
119
126
 
120
- [Unreleased]: https://github.com/OSC/ood_core/compare/v0.4.0...HEAD
127
+ [Unreleased]: https://github.com/OSC/ood_core/compare/v0.5.0...HEAD
128
+ [0.5.0]: https://github.com/OSC/ood_core/compare/v0.4.0...v0.5.0
121
129
  [0.4.0]: https://github.com/OSC/ood_core/compare/v0.3.0...v0.4.0
122
130
  [0.3.0]: https://github.com/OSC/ood_core/compare/v0.2.1...v0.3.0
123
131
  [0.2.1]: https://github.com/OSC/ood_core/compare/v0.2.0...v0.2.1
@@ -161,7 +161,7 @@ module OodCore
161
161
  # Mapping of state codes for PBSPro
162
162
  STATE_MAP = {
163
163
  'Q' => :queued,
164
- 'W' => :queued, # job is waiting for its submitter-assigned start time to be reached
164
+ 'W' => :queued_held, # job is waiting for its submitter-assigned start time to be reached
165
165
  'H' => :queued_held,
166
166
  'T' => :queued_held, # job is being moved to a new location
167
167
  'M' => :completed, # job was moved to another server
@@ -34,7 +34,8 @@ module OodCore
34
34
  STATE_MAP = {
35
35
  'Q' => :queued,
36
36
  'H' => :queued_held,
37
- 'T' => :queued_held, # transiting, most like a held job
37
+ 'T' => :queued_held, # transiting (being moved to new location)
38
+ 'W' => :queued_held, # waiting (waiting for its execution time)
38
39
  'R' => :running,
39
40
  'S' => :suspended,
40
41
  'E' => :running, # exiting, but still running
@@ -1,4 +1,4 @@
1
1
  module OodCore
2
2
  # The current version of {OodCore}
3
- VERSION = "0.4.0"
3
+ VERSION = "0.5.0"
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ood_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Nicklas
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-04-20 00:00:00.000000000 Z
11
+ date: 2018-04-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ood_support