mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 12:57:29 -08:00
🐛 Temporary change logging to fix memory issue
This commit is contained in:
parent
58c9831956
commit
ef8d1e72b4
|
@ -552,10 +552,13 @@ async function proxyRequestToAxios(
|
||||||
|
|
||||||
axiosConfig = Object.assign(axiosConfig, await parseRequestObject(configObject));
|
axiosConfig = Object.assign(axiosConfig, await parseRequestObject(configObject));
|
||||||
|
|
||||||
Logger.debug('Proxying request to axios', {
|
Logger.debug(
|
||||||
originalConfig: configObject,
|
'Proxying request to axios',
|
||||||
parsedConfig: axiosConfig,
|
// {
|
||||||
});
|
// originalConfig: configObject,
|
||||||
|
// parsedConfig: axiosConfig,
|
||||||
|
// }
|
||||||
|
);
|
||||||
|
|
||||||
if (configObject.auth?.sendImmediately === false) {
|
if (configObject.auth?.sendImmediately === false) {
|
||||||
// for digest-auth
|
// for digest-auth
|
||||||
|
|
Loading…
Reference in a new issue