This is an automated email from the ASF dual-hosted git repository.

mcgilman 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 3bd899ca6b NIFI-14903: fix initial values for RPG proxy config fields 
(#10242)
3bd899ca6b is described below

commit 3bd899ca6bc950bf660bd959e231e97bf1f4720a
Author: Shane Ardell <[email protected]>
AuthorDate: Tue Aug 26 08:29:46 2025 -0500

    NIFI-14903: fix initial values for RPG proxy config fields (#10242)
---
 .../edit-remote-process-group.component.ts                        | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/nifi-frontend/src/main/frontend/apps/nifi/src/app/pages/flow-designer/ui/canvas/items/remote-process-group/edit-remote-process-group/edit-remote-process-group.component.ts
 
b/nifi-frontend/src/main/frontend/apps/nifi/src/app/pages/flow-designer/ui/canvas/items/remote-process-group/edit-remote-process-group/edit-remote-process-group.component.ts
index 1f66a7a51c..d094312bdc 100644
--- 
a/nifi-frontend/src/main/frontend/apps/nifi/src/app/pages/flow-designer/ui/canvas/items/remote-process-group/edit-remote-process-group/edit-remote-process-group.component.ts
+++ 
b/nifi-frontend/src/main/frontend/apps/nifi/src/app/pages/flow-designer/ui/canvas/items/remote-process-group/edit-remote-process-group/edit-remote-process-group.component.ts
@@ -77,10 +77,10 @@ export class EditRemoteProcessGroup extends 
CloseOnEscapeDialog {
             urls: new FormControl(request.entity.component.targetUris, 
Validators.required),
             transportProtocol: new 
FormControl(request.entity.component.transportProtocol, Validators.required),
             localNetworkInterface: new 
FormControl(request.entity.component.localNetworkInterface),
-            httpProxyServerHostname: new 
FormControl(request.entity.component.httpProxyServerHostname),
-            httpProxyServerPort: new 
FormControl(request.entity.component.httpProxyServerPort),
-            httpProxyUser: new 
FormControl(request.entity.component.httpProxyUser),
-            httpProxyPassword: new 
FormControl(request.entity.component.httpProxyPassword),
+            httpProxyServerHostname: new 
FormControl(request.entity.component.proxyHost),
+            httpProxyServerPort: new 
FormControl(request.entity.component.proxyPort),
+            httpProxyUser: new FormControl(request.entity.component.proxyUser),
+            httpProxyPassword: new 
FormControl(request.entity.component.proxyPassword),
             communicationsTimeout: new 
FormControl(request.entity.component.communicationsTimeout, 
Validators.required),
             yieldDuration: new 
FormControl(request.entity.component.yieldDuration, Validators.required)
         });

Reply via email to