Skip to content

Commit

Permalink
remove options argument from _applyCalculated
Browse files Browse the repository at this point in the history
  • Loading branch information
ida613 committed Aug 9, 2024
1 parent ade501e commit bdf54df
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/dd-trace/src/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ class Config {
this._applyDefaults()
this._applyEnvironment()
this._applyOptions(options)
this._applyCalculated(options)
this._applyCalculated()
this._applyRemote({})
this._merge()

Expand Down Expand Up @@ -354,7 +354,7 @@ class Config {
}

// TODO: test
this._applyCalculated(options)
this._applyCalculated()
this._merge()
}

Expand Down Expand Up @@ -982,7 +982,7 @@ class Config {
}

// handles values calculated from a mixture of options and env vars
_applyCalculated (options) {
_applyCalculated () {
const calc = setHiddenProperty(this, '_calculated', {})

const {
Expand Down

0 comments on commit bdf54df

Please sign in to comment.