[ML] Replace UTF-8 infinity symbol with ASCII word (elastic/x-pack-elasticsearch#1041)

Makes the log more readable in editors not set to UTF-8.
Customers may well be in this situation on Linux/Windows.

Original commit: elastic/x-pack-elasticsearch@4e59fc90cf
This commit is contained in:
David Roberts 2017-04-11 15:25:50 +01:00 committed by GitHub
parent 78a3c32ec4
commit 9525cb4784
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ import static org.elasticsearch.xpack.persistent.PersistentTasksService.WaitForP
public class DatafeedManager extends AbstractComponent {
private static final String INF_SYMBOL = "\u221E";
private static final String INF_SYMBOL = "forever";
private final Client client;
private final ClusterService clusterService;