[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:
parent
78a3c32ec4
commit
9525cb4784
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue