ll-innobackup 0.1.13 → 0.1.14
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.
- data/lib/ll-innobackup.rb +3 -1
- metadata +1 -1
data/lib/ll-innobackup.rb
CHANGED
@@ -221,7 +221,9 @@ class InnoBackup
|
|
221
221
|
exc = "#{innobackup_command} 2> #{innobackup_log} | "\
|
222
222
|
"#{aws_command} #{aws_debug} > #{aws_log} 2>&1"
|
223
223
|
`#{exc}`if valid_commands?
|
224
|
-
|
224
|
+
resp = $CHILD_STATUS
|
225
|
+
@completed = resp = 0
|
226
|
+
puts "Function Returned: #{resp}"
|
225
227
|
return record if success? && completed?
|
226
228
|
revert_aws if valid_commands?
|
227
229
|
rescue InnoBackup::NoStateError => e
|