dd-trace 4.0.0-pre-19ea4d3 → 4.0.0-pre-c2a4fd2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/ci/init.js +1 -3
  2. package/package.json +1 -1
package/ci/init.js CHANGED
@@ -3,15 +3,13 @@ const tracer = require('../packages/dd-trace')
3
3
  const { ORIGIN_KEY } = require('../packages/dd-trace/src/constants')
4
4
  const { isTrue } = require('../packages/dd-trace/src/util')
5
5
 
6
- const isJestWorker = () => !!process.env.JEST_WORKER_ID
7
-
8
6
  const options = {
9
7
  startupLogs: false,
10
8
  tags: {
11
9
  [ORIGIN_KEY]: 'ciapp-test'
12
10
  },
13
11
  isCiVisibility: true,
14
- flushInterval: isJestWorker() ? 120000 : 5000
12
+ flushInterval: 5000
15
13
  }
16
14
 
17
15
  let shouldInit = true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dd-trace",
3
- "version": "4.0.0-pre-19ea4d3",
3
+ "version": "4.0.0-pre-c2a4fd2",
4
4
  "description": "Datadog APM tracing client for JavaScript",
5
5
  "main": "index.js",
6
6
  "typings": "index.d.ts",