You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 8, 2020. It is now read-only.
Class: CsvReporterConfig
Method: enable
Line 39: File foutDir = createFile();
The line above invokes the Parent AbstractCsvReporterConfig's createFile() method.
In createFile() method's
Line Number 45: boolean success = foutDir.mkdirs();
This method will return false, if the directory already exists.
Since the value returned is false in CsvReporterConfig the enable method will return false.
I don't know if this is correct implementation, the reporter should continue to update the CSV files if the directory and file already exists.
The text was updated successfully, but these errors were encountered:
ianilsley
added a commit
to ianilsley/metrics-reporter-config
that referenced
this issue
Jun 22, 2016
Class: CsvReporterConfig
Method: enable
Line 39: File foutDir = createFile();
The line above invokes the Parent AbstractCsvReporterConfig's createFile() method.
In createFile() method's
Line Number 45: boolean success = foutDir.mkdirs();
This method will return false, if the directory already exists.
Since the value returned is false in CsvReporterConfig the enable method will return false.
I don't know if this is correct implementation, the reporter should continue to update the CSV files if the directory and file already exists.
The text was updated successfully, but these errors were encountered: