rfellows commented on code in PR #10976:
URL: https://github.com/apache/nifi/pull/10976#discussion_r2896190703


##########
nifi-frontend/src/main/frontend/apps/nifi/src/app/pages/flow-designer/ui/canvas/items/processor/edit-processor/edit-processor.component.ts:
##########
@@ -348,6 +352,17 @@ export class EditProcessor extends TabbedDialog {
         return this.request.entity.component.supportsBatching == true;
     }
 
+    supportsParallelProcessing(): boolean {
+        return this.request.entity.component.supportsParallelProcessing === 
true;
+    }
+
+    concurrentTasksTooltip(): string {
+        if (this.supportsParallelProcessing()) {
+            return 'The number of tasks that should be concurrently scheduled 
for this processor. Must be an integer greater than 0.';
+        }
+        return 'The number of tasks that should be concurrently scheduled for 
this processor. This processor does not support parallel processing.';

Review Comment:
   ```suggestion
           return 'This processor does not support parallel processing.';
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to