mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
fix(Cortex Node): Fix issue that not all Analyzers got returned (#3606)
* Updated Cortex analyzer search url to fetch all * Updated Cortex credentials * Nodelinter fixes * More fixes
This commit is contained in:
committed by
GitHub
parent
522b31a47b
commit
6e595c7276
@@ -55,7 +55,7 @@ export class Cortex implements INodeType {
|
||||
name: 'cortex',
|
||||
icon: 'file:cortex.svg',
|
||||
group: ['transform'],
|
||||
subtitle: '={{$parameter["resource"]+ ": " + $parameter["operation"]}}',
|
||||
subtitle: '={{$parameter["operation"]+ ": " + $parameter["resource"]}}',
|
||||
version: 1,
|
||||
description: 'Apply the Cortex analyzer/responder on the given entity',
|
||||
defaults: {
|
||||
@@ -112,7 +112,7 @@ export class Cortex implements INodeType {
|
||||
const requestResult = await cortexApiRequest.call(
|
||||
this,
|
||||
'POST',
|
||||
`/analyzer/_search`,
|
||||
`/analyzer/_search?range=all`,
|
||||
);
|
||||
|
||||
const returnData: INodePropertyOptions[] = [];
|
||||
|
||||
Reference in New Issue
Block a user