brpm_module_bladelogic 0.1.16 → 0.1.17
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 +8 -8
- data/automations/deploy_package.rb +3 -3
- data/config.yml +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ZWY2MzBhOTk2YjBjZDIwY2E3YWIxYThjYmU1ZmNlNDMwMTZiYWMzNA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NDMyNGUzZmZiMGM2OTYwYjdkOTRjOWZjMzRjYjhmYzBlODkzY2Q2MQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MDc4YTlmZTMwNzQxNzllYjAxY2M1OGZkOTFhYjBiOTc5NTViMTc1YTBmYjI4
|
10
|
+
Y2I4YWZhZjljYjdlZGYwZDYyMTM3NWVmZGIzY2UwNTZjN2RiN2FlYzkwY2Zh
|
11
|
+
NmJkYzE2Mjc0NDRmYmY3Y2ExOGM5MTYwY2NjZjM0MTI3YTQ4OTA=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NTUxZDI4MDY3OTdhOWM3YjI5ODcyNWZhYWJjNTM5NTRlN2YxOTk3YTUzODBk
|
14
|
+
NTJjNzViMWIzZTY4OWViZDYwMDFhMjZiY2M2NzU5YTI5M2RhODRkNDQ1ZGZl
|
15
|
+
YWVlZTU2ZDYxM2YxNzViNGM2YzhiYWVhMTg5NGJkZDVkZTRjMTI=
|
@@ -102,7 +102,7 @@ else
|
|
102
102
|
end
|
103
103
|
|
104
104
|
if params["deploy_options"] == "Only upload package"
|
105
|
-
start_time = Time.now
|
105
|
+
start_time = Time.now.utc + 5
|
106
106
|
BrpmAuto.log("Setting the phase schedule of the Deploy job to only execute the stage phase...")
|
107
107
|
job_db_key = bsa_soap_client.deploy_job.set_phase_schedule_by_dbkey({:job_run_key => job_db_key,
|
108
108
|
:simulate_type => "AtTime",
|
@@ -112,12 +112,12 @@ else
|
|
112
112
|
:commit_type => "NotScheduled",
|
113
113
|
:commit_date => ""})
|
114
114
|
|
115
|
-
sleep(
|
115
|
+
sleep(15)
|
116
116
|
job_run_key = bsa_soap_client.job_run.find_last_run_key_by_job_key({:job_key => job_db_key})
|
117
117
|
|
118
118
|
BrpmAuto.log("Polling the Deploy job until it is finished...")
|
119
119
|
begin
|
120
|
-
sleep(
|
120
|
+
sleep(5)
|
121
121
|
is_still_running = bsa_soap_client.job_run.get_job_run_is_running_by_run_key({:job_run_key => job_run_key})
|
122
122
|
end while is_still_running
|
123
123
|
BrpmAuto.log("The Deploy job has finished.")
|
data/config.yml
CHANGED