This is an automated email from the ASF dual-hosted git repository.
pvillard pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git
The following commit(s) were added to refs/heads/main by this push:
new 697f0e7647 NIFI-14542 Removed System.getProperty() from FetchFile
Description
697f0e7647 is described below
commit 697f0e7647cd38ae87fb0cbc20d7791435b4bab1
Author: exceptionfactory <[email protected]>
AuthorDate: Tue May 6 21:19:21 2025 -0500
NIFI-14542 Removed System.getProperty() from FetchFile Description
Signed-off-by: Pierre Villard <[email protected]>
This closes #9919.
---
.../src/main/java/org/apache/nifi/processors/standard/FetchFile.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/FetchFile.java
b/nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/FetchFile.java
index 1ba8612397..b4dd13df63 100644
---
a/nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/FetchFile.java
+++
b/nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/FetchFile.java
@@ -170,7 +170,7 @@ public class FetchFile extends AbstractProcessor {
.build();
static final PropertyDescriptor PERM_DENIED_LOG_LEVEL = new
PropertyDescriptor.Builder()
.name("Log level when permission denied")
- .description("Log level to use in case user " +
System.getProperty("user.name") + " does not have sufficient permissions to
read the file")
+ .description("Log level to use if the current application user does
not have sufficient permissions to read the file")
.allowableValues(LogLevel.values())
.defaultValue(LogLevel.ERROR.toString())
.required(true)