Follow up 8c5f87c9d4
: Improved detection of ES attachment plugin error and output message.
This commit is contained in:
parent
525de8413c
commit
7954ee0dce
1 changed files with 2 additions and 2 deletions
|
@ -606,12 +606,12 @@ return true if backend is configured
|
||||||
|
|
||||||
message = if response&.error&.match?('Connection refused')
|
message = if response&.error&.match?('Connection refused')
|
||||||
"Elasticsearch is not reachable, probably because it's not running or even installed."
|
"Elasticsearch is not reachable, probably because it's not running or even installed."
|
||||||
elsif url.end_with?('pipeline/zammad-attachment') && response.code == 400
|
elsif url.end_with?('pipeline/zammad-attachment', 'pipeline=zammad-attachment') && response.code == 400
|
||||||
'The installed attachment plugin could not handle the request payload. Ensure that the correct attachment plugin is installed (5.6 => ingest-attachment, 2.4 - 5.5 => mapper-attachments).'
|
'The installed attachment plugin could not handle the request payload. Ensure that the correct attachment plugin is installed (5.6 => ingest-attachment, 2.4 - 5.5 => mapper-attachments).'
|
||||||
else
|
else
|
||||||
'Check the response and payload for detailed information: '
|
'Check the response and payload for detailed information: '
|
||||||
end
|
end
|
||||||
|
|
||||||
"#{prefix}#{message}#{suffix}"
|
"#{prefix} #{message}#{suffix}"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue