Module: Datadog::Core::Utils::SpawnMonkeyPatch::ProcessSpawnPatch
- Defined in:
- lib/datadog/core/utils/spawn_monkey_patch.rb
Overview
Prepends Process.spawn to merge env_provider output into the child's environment hash.
Instance Method Summary collapse
-
#spawn(*args) ⇒ Object
steep:ignore DifferentMethodParameterKind.
Instance Method Details
#spawn(*args) ⇒ Object
steep:ignore DifferentMethodParameterKind
25 26 27 |
# File 'lib/datadog/core/utils/spawn_monkey_patch.rb', line 25 def spawn(*args, **kwargs) # steep:ignore DifferentMethodParameterKind super(*SpawnMonkeyPatch.inject_envs(args), **kwargs) end |