ood_core 0.5.0 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -1
- data/lib/ood_core/batch_connect/templates/vnc.rb +1 -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: 4b61e4bf73722fcbd1addb34112df942ac672909
|
|
4
|
+
data.tar.gz: bb8d8358be3565e2e9b304729936a69df5995e9d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bde820e45c4b5fd535eac02b76a3b736ca5f5dd912f93d732d7e659062c7416cc6c17833b20175be0ee92118ff99ef7f2ed29e14f7412c29c55b1431078540e5
|
|
7
|
+
data.tar.gz: bf23a4ac0338c9b63d9909ca2524d2fa896d7a3f23e7b4b3cfa1826a8e7eb2ec6423cba1f9a3b8b50c88f004368a46ec31784c6a9fc1c6c7be5f80b15df03a42
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.5.1] - 2018-05-14
|
|
11
|
+
### Fixed
|
|
12
|
+
- Fixed mistyped `random_number` call in VNC template.
|
|
13
|
+
[#88](https://github.com/OSC/ood_core/pull/88)
|
|
14
|
+
([@travigd](https://github.com/travigd))
|
|
15
|
+
|
|
10
16
|
## [0.5.0] - 2018-04-30
|
|
11
17
|
### Added
|
|
12
18
|
- Added missing "Waiting" state to the Torque adapter as `:queued_held`.
|
|
@@ -124,7 +130,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
124
130
|
### Added
|
|
125
131
|
- Initial release!
|
|
126
132
|
|
|
127
|
-
[Unreleased]: https://github.com/OSC/ood_core/compare/v0.5.
|
|
133
|
+
[Unreleased]: https://github.com/OSC/ood_core/compare/v0.5.1...HEAD
|
|
134
|
+
[0.5.1]: https://github.com/OSC/ood_core/compare/v0.5.0...v0.5.1
|
|
128
135
|
[0.5.0]: https://github.com/OSC/ood_core/compare/v0.4.0...v0.5.0
|
|
129
136
|
[0.4.0]: https://github.com/OSC/ood_core/compare/v0.3.0...v0.4.0
|
|
130
137
|
[0.3.0]: https://github.com/OSC/ood_core/compare/v0.2.1...v0.3.0
|
|
@@ -97,7 +97,7 @@ module OodCore
|
|
|
97
97
|
|
|
98
98
|
# Check that Xvnc process is running, if not assume it died and
|
|
99
99
|
# wait some random period of time before restarting
|
|
100
|
-
kill -0 ${VNC_PID} 2>/dev/null || sleep 0.$(
|
|
100
|
+
kill -0 ${VNC_PID} 2>/dev/null || sleep 0.$(random_number 1 9)s
|
|
101
101
|
|
|
102
102
|
# If running, then all is well and break out of loop
|
|
103
103
|
kill -0 ${VNC_PID} 2>/dev/null && break
|
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.5.
|
|
4
|
+
version: 0.5.1
|
|
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-
|
|
11
|
+
date: 2018-05-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ood_support
|