Skip to content

Commit 5d99fe4

Browse files
Aakash-Ranarana-aakashDigitalBrainJS
authored
fix(core): fixed config merging bug (#6668)
Co-authored-by: rana-aakash <[email protected]> Co-authored-by: Dmitriy Mozgovoy <[email protected]>
1 parent 76dc3e6 commit 5d99fe4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lib/core/mergeConfig.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export default function mergeConfig(config1, config2) {
1919
config2 = config2 || {};
2020
const config = {};
2121

22-
function getMergedValue(target, source, caseless) {
22+
function getMergedValue(target, source, prop, caseless) {
2323
if (utils.isPlainObject(target) && utils.isPlainObject(source)) {
2424
return utils.merge.call({caseless}, target, source);
2525
} else if (utils.isPlainObject(source)) {
@@ -31,11 +31,11 @@ export default function mergeConfig(config1, config2) {
3131
}
3232

3333
// eslint-disable-next-line consistent-return
34-
function mergeDeepProperties(a, b, caseless) {
34+
function mergeDeepProperties(a, b, prop , caseless) {
3535
if (!utils.isUndefined(b)) {
36-
return getMergedValue(a, b, caseless);
36+
return getMergedValue(a, b, prop , caseless);
3737
} else if (!utils.isUndefined(a)) {
38-
return getMergedValue(undefined, a, caseless);
38+
return getMergedValue(undefined, a, prop , caseless);
3939
}
4040
}
4141

@@ -93,7 +93,7 @@ export default function mergeConfig(config1, config2) {
9393
socketPath: defaultToConfig2,
9494
responseEncoding: defaultToConfig2,
9595
validateStatus: mergeDirectKeys,
96-
headers: (a, b) => mergeDeepProperties(headersToObject(a), headersToObject(b), true)
96+
headers: (a, b , prop) => mergeDeepProperties(headersToObject(a), headersToObject(b),prop, true)
9797
};
9898

9999
utils.forEach(Object.keys(Object.assign({}, config1, config2)), function computeConfigValue(prop) {

0 commit comments

Comments
 (0)