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 +4 -4
- data/CHANGELOG.md +9 -1
- data/lib/ood_core/job/adapters/pbspro.rb +1 -1
- data/lib/ood_core/job/adapters/torque.rb +2 -1
- data/lib/ood_core/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c5f8e7719004cb4013fba271ff78e0a8d6158bf6
|
4
|
+
data.tar.gz: 79081802e2fe4e0470abd3cc00dd4c58fc2beecf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 135023bc492b2f9599f918f590a694cf2428d8614aaa7a75e3b6abc7a0b2d00407cae0569a3558b2668b37c60a146c7bc2f97f54ecb60e47800fb7fab386d323
|
7
|
+
data.tar.gz: 0a33a1630e96a2e665310fc22480f85f748f6a4437823562600c40524df46535a2776d445b56731ee8ae01725b373a7f2c706eef290d9171f377fb76d78fab59
|
data/CHANGELOG.md
CHANGED
@@ -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.
|
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' => :
|
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
|
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
|
data/lib/ood_core/version.rb
CHANGED
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
|
+
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-
|
11
|
+
date: 2018-04-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ood_support
|