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
Elasticsearch version (bin/elasticsearch --version): 6.8.2
Description of the problem including expected versus actual behavior:
On every startup, without anything indexing into Elasticsearch, a deprecation message is logged about a date format like this:
[2019-08-13T08:43:11,611][WARN ][o.e.d.c.j.Joda ] [A2Wr_Jx] 'y' year should be replaced with 'u'. Use 'y' for year-of-era. Prefix your date format with '8' to use the new specifier.
Steps to reproduce:
Download 6.8.2
start Elasticsearch
tail logs/elasticsearch_depreciation.log
The text was updated successfully, but these errors were encountered:
When starting up Elasticsearch 6.8, there is always a deprecation
message logged like this
[WARN ][o.e.d.c.j.Joda ] [A2Wr_Jx] 'y' year should be replaced with 'u'. Use 'y' for year-of-era. Prefix your date format with '8' to use the new specifier.
tracing this down, result in the LicenseService being the culprit using
an deprecated date. This switches to a java time based date.
Closes#45483
Elasticsearch version (
bin/elasticsearch --version
): 6.8.2Description of the problem including expected versus actual behavior:
On every startup, without anything indexing into Elasticsearch, a deprecation message is logged about a date format like this:
Steps to reproduce:
The text was updated successfully, but these errors were encountered: