Fix license messaging for Logstash functionality (elastic/x-pack-elasticsearch#3268)
* Fix license messaging for Logstash functionality With a Basic license, users are still able to perform CRUD operations on the `.logstash` index, therefore manage their Logstash pipelines. However, Logstash itself will not pick up any changes from this index and act on them. With an expired license Logstash functionality continues to operate as normal. * Fixing messages after feedback * Removing extraneous tabs at end of line * Fixing typo Original commit: elastic/x-pack-elasticsearch@bc069cf00f
This commit is contained in:
parent
4f1866db69
commit
78f7c0e27a
|
@ -49,7 +49,7 @@ public class XPackLicenseState {
|
|||
"Machine learning APIs are disabled"
|
||||
});
|
||||
messages.put(XPackPlugin.LOGSTASH, new String[] {
|
||||
"Logstash specific APIs are disabled. You can continue to manage and poll stored configurations"
|
||||
"Logstash will continue to poll centrally-managed pipelines"
|
||||
});
|
||||
messages.put(XPackPlugin.DEPRECATION, new String[] {
|
||||
"Deprecation APIs are disabled"
|
||||
|
@ -201,8 +201,7 @@ public class XPackLicenseState {
|
|||
case STANDARD:
|
||||
case GOLD:
|
||||
case PLATINUM:
|
||||
return new String[] { "Logstash specific APIs will be disabled, but you can continue to manage " +
|
||||
"and poll stored configurations" };
|
||||
return new String[] { "Logstash will no longer poll for centrally-managed pipelines" };
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue