Method: Mutx::Support::Configuration.execution_time_to_live
- Defined in:
- lib/mutx/support/configuration.rb
.execution_time_to_live ⇒ Object
After this period of time (in seconds) Mutx will kill process execution automatically
268 269 270 |
# File 'lib/mutx/support/configuration.rb', line 268 def self.execution_time_to_live self.is_a_number?(@@input["kill_inactive_executions_after"]) ? @@input["kill_inactive_executions_after"] : 180 end |