Github user patricker commented on a diff in the pull request:
https://github.com/apache/nifi/pull/3033#discussion_r225997511
--- Diff:
nifi-commons/nifi-properties/src/main/java/org/apache/nifi/util/NiFiProperties.java
---
@@ -1422,10 +1424,15 @@ public String
getDefaultBackPressureDataSizeThreshold() {
public static NiFiProperties createBasicNiFiProperties(final String
propertiesFilePath, final Map<String, String> additionalProperties) {
final Map<String, String> addProps = (additionalProperties ==
null) ? Collections.EMPTY_MAP : additionalProperties;
final Properties properties = new Properties();
- final String nfPropertiesFilePath = (propertiesFilePath == null)
+ String nfPropertiesFilePath = (propertiesFilePath == null)
? System.getProperty(NiFiProperties.PROPERTIES_FILE_PATH)
: propertiesFilePath;
if (nfPropertiesFilePath != null) {
+ try {
--- End diff --
This sounds like it could be a legitimate bug, but it would need to be
submitted separately as it's not related to fixing `GetFile`. I run on Windows,
but I don't have spaces in the path, maybe switch to a new path with no spaces
for now?
---