maestro_plugin 0.0.11 → 0.0.12
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.
|
@@ -115,7 +115,10 @@ module Maestro
|
|
|
115
115
|
handle_exception(e)
|
|
116
116
|
set_error(msg)
|
|
117
117
|
ensure
|
|
118
|
-
return
|
|
118
|
+
# Older agents expected this method to *maybe* return something
|
|
119
|
+
# .. something that no longer exists, but if we return anything
|
|
120
|
+
# it will be *wrong* :P
|
|
121
|
+
return nil
|
|
119
122
|
end
|
|
120
123
|
|
|
121
124
|
# Fire supplied exception handlers if supplied, otherwise do nothing
|