mirror of https://github.com/apache/nifi.git
[NIFI-2831] update auto terminate messages. This closes #1077
This commit is contained in:
parent
12e3315ae9
commit
1a24f5f34c
|
@ -278,7 +278,7 @@ public class StandardProcessorDAO extends ComponentDAO implements ProcessorDAO {
|
|||
final Relationship relationship = new Relationship.Builder().name(relationshipName).build();
|
||||
final Set<Connection> connections = processorNode.getConnections(relationship);
|
||||
if (isNotNull(connections) && !connections.isEmpty()) {
|
||||
validationErrors.add("Cannot Auto-Terminate '" + relationshipName + "' relationship because a Connection already exists with this relationship");
|
||||
validationErrors.add("Cannot automatically terminate '" + relationshipName + "' relationship because a Connection already exists with this relationship");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -81,7 +81,7 @@
|
|||
<div class="settings-right">
|
||||
<div class="setting">
|
||||
<div class="setting-name">
|
||||
Auto terminate relationships
|
||||
Automatically terminate relationships
|
||||
<div class="fa fa-question-circle" alt="Info" title="Will automatically terminate FlowFiles sent to a given relationship if it is not defined elsewhere."></div>
|
||||
</div>
|
||||
<div class="setting-field">
|
||||
|
|
|
@ -79,7 +79,7 @@
|
|||
<div class="settings-right">
|
||||
<div class="setting">
|
||||
<div class="setting-name">
|
||||
Auto terminate relationships
|
||||
Automatically terminate relationships
|
||||
<div class="fa fa-question-circle" alt="Info" title="Will automatically terminate FlowFiles sent to all relationships in bold."></div>
|
||||
</div>
|
||||
<div class="setting-field">
|
||||
|
|
Loading…
Reference in New Issue