mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
fix(core): Ensure maxRedirects is used for any http request defining it (#8706)
This commit is contained in:
committed by
GitHub
parent
8c4a744c56
commit
246c988b93
@@ -340,14 +340,14 @@ export class HttpRequestV2 implements INodeType {
|
||||
name: 'followAllRedirects',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Whether to follow non-GET HTTP 3xx redirects',
|
||||
description: 'Whether to follow All HTTP 3xx redirects',
|
||||
},
|
||||
{
|
||||
displayName: 'Follow GET Redirect',
|
||||
displayName: 'Follow GET/HEAD Redirect',
|
||||
name: 'followRedirect',
|
||||
type: 'boolean',
|
||||
default: true,
|
||||
description: 'Whether to follow GET HTTP 3xx redirects',
|
||||
description: 'Whether to follow GET or HEAD HTTP 3xx redirects',
|
||||
},
|
||||
{
|
||||
displayName: 'Ignore Response Code',
|
||||
|
||||
Reference in New Issue
Block a user