Details
-
Bug
-
Status: Resolved (View Workflow)
-
Major
-
Resolution: Fixed
-
17.1.1
-
Security Level: Default (Default Security Scheme)
-
None
Description
Chart config factory reloads the Notification configuration and not the Charts configuration see:
ChartConfigFactory.java
115 @Override 116 public void update() throws IOException, MarshalException, ValidationException { 117 if (m_lastModified != m_chartConfigFile.lastModified()) { 118 NotifdConfigFactory.getInstance().reload(); 119 } 120 } 121
Line 118 should be:
ChartConfigFactory.getInstance().reload();