mirror of https://github.com/apache/lucene.git
SOLR-11779: Use fixed Locale for graph labels.
This commit is contained in:
parent
e3d4c7e9b7
commit
0e4512c231
|
@ -798,7 +798,7 @@ public class MetricsHistoryHandler extends RequestHandlerBase implements Permiss
|
||||||
graphDef.setWidth(500);
|
graphDef.setWidth(500);
|
||||||
graphDef.setHeight(175);
|
graphDef.setHeight(175);
|
||||||
graphDef.setTimeZone(TimeZone.getDefault());
|
graphDef.setTimeZone(TimeZone.getDefault());
|
||||||
graphDef.setLocale(Locale.getDefault());
|
graphDef.setLocale(Locale.ROOT);
|
||||||
// redraw immediately
|
// redraw immediately
|
||||||
graphDef.setLazy(false);
|
graphDef.setLazy(false);
|
||||||
// area with a border
|
// area with a border
|
||||||
|
|
Loading…
Reference in New Issue