@artilleryio/int-core 2.9.0-ef69996 → 2.10.0-7b891c9
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.
- package/lib/engine_http.js +8 -3
- package/package.json +2 -2
package/lib/engine_http.js
CHANGED
|
@@ -856,9 +856,14 @@ function lastRequest(res, requestParams) {
|
|
|
856
856
|
HttpEngine.prototype.setInitialContext = function (initialContext) {
|
|
857
857
|
initialContext._successCount = 0;
|
|
858
858
|
|
|
859
|
-
initialContext._defaultStrictCapture =
|
|
860
|
-
|
|
861
|
-
this.config.defaults
|
|
859
|
+
initialContext._defaultStrictCapture = true;
|
|
860
|
+
if (
|
|
861
|
+
this.config.http?.defaults?.strictCapture === false ||
|
|
862
|
+
this.config.defaults?.strictCapture === false
|
|
863
|
+
) {
|
|
864
|
+
initialContext._defaultStrictCapture = false;
|
|
865
|
+
}
|
|
866
|
+
|
|
862
867
|
initialContext._jar = new tough.CookieJar(
|
|
863
868
|
null,
|
|
864
869
|
this.config.http.cookieJarOptions
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@artilleryio/int-core",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.10.0-7b891c9",
|
|
4
4
|
"main": "./index.js",
|
|
5
5
|
"license": "MPL-2.0",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@artilleryio/int-commons": "2.
|
|
7
|
+
"@artilleryio/int-commons": "2.6.0-7b891c9",
|
|
8
8
|
"@artilleryio/sketches-js": "^2.1.1",
|
|
9
9
|
"agentkeepalive": "^4.1.0",
|
|
10
10
|
"arrivals": "^2.1.2",
|