You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Kibana version: master Elasticsearch version: master Original install method (e.g. download page, yum, from source, etc.): source
Code in the elasticsearch plugin is trying to parse the error messages elasticsearch produces when it requires basic authentication, in order to determine the correct realm. As the // TODO: indicates, this was intended as a stop-gap until the header was available from esjs.
ES has since changed the format of the error messages, so the header is no longer included, but it's now accessible in the response body:
This causes multiple auth dialogs to show up because Elasticsearch's realm might not match the default realm that Kibana uses, "Authorization Required", and users have to login once per realm.
The text was updated successfully, but these errors were encountered:
Kibana version: master
Elasticsearch version: master
Original install method (e.g. download page, yum, from source, etc.): source
Code in the elasticsearch plugin is trying to parse the error messages elasticsearch produces when it requires basic authentication, in order to determine the correct realm. As the
// TODO:
indicates, this was intended as a stop-gap until the header was available from esjs.ES has since changed the format of the error messages, so the header is no longer included, but it's now accessible in the response body:
This causes multiple auth dialogs to show up because Elasticsearch's realm might not match the default realm that Kibana uses,
"Authorization Required"
, and users have to login once per realm.The text was updated successfully, but these errors were encountered: