Fixes #8558 - set Solr UTC timezone

Set the timezone of the Solr date formatter to UTC
This commit is contained in:
Sean Kalynuk
2023-07-26 11:27:32 -05:00
parent db2a6d98d7
commit 4c329b4319

View File

@@ -35,6 +35,8 @@ public class SolrUtils {
* @return date formatter compatible with Solr.
*/
public static DateFormat getDateFormatter() {
return new SimpleDateFormat(SolrUtils.SOLR_DATE_FORMAT);
DateFormat formatter = new SimpleDateFormat(SolrUtils.SOLR_DATE_FORMAT);
formatter.setTimeZone(SOLR_TIME_ZONE);
return formatter;
}
}