-
Type:
Improvement
-
Resolution: Done
-
Priority:
Major - P3
-
Affects Version/s: None
-
Component/s: None
-
None
-
None
-
None
-
None
-
None
-
None
-
None
-
None
Right now, op_timeout is set via
@op_timeout = opts[:op_timeout] || 30
It'd be nice if instead this were
@op_timeout = opts.fetch(:op_timeout, 30)
or something along those lines.