We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7707fc2 commit 2e3f1b8Copy full SHA for 2e3f1b8
packages/dd-trace/src/plugin_manager.js
@@ -78,7 +78,7 @@ module.exports = class PluginManager {
78
this._pluginsByName[name] = new Plugin(this._tracer, this._tracerConfig)
79
}
80
const pluginConfig = this._configsByName[name] || {
81
- enabled: isTrue(getEnvEnabled(Plugin)) || (this._tracerConfig.plugins !== false && !Plugin.experimental)
+ enabled: this._tracerConfig.plugins !== false && (!Plugin.experimental || isTrue(getEnvEnabled(Plugin)))
82
83
84
// extracts predetermined configuration from tracer and combines it with plugin-specific config
0 commit comments