mirror of https://github.com/apache/nifi.git
NIFI-11301 Fixed typos in ISPEnrichIP and DistributeLoad
This closes #7056 Signed-off-by: David Handermann <exceptionfactory@apache.org>
This commit is contained in:
parent
d563f522d4
commit
cb6e530a3c
|
@ -47,7 +47,7 @@ import java.util.concurrent.TimeUnit;
|
|||
@Tags({"ISP", "enrich", "ip", "maxmind"})
|
||||
@InputRequirement(Requirement.INPUT_REQUIRED)
|
||||
@CapabilityDescription("Looks up ISP information for an IP address and adds the information to FlowFile attributes. The "
|
||||
+ "ISP data is provided as a MaxMind ISP database (Note that this is NOT the same as the GeoLite database utilized" +
|
||||
+ "ISP data is provided as a MaxMind ISP database. (Note that this is NOT the same as the GeoLite database utilized " +
|
||||
"by some geo enrichment tools). The attribute that contains the IP address to lookup is provided by the " +
|
||||
"'IP Address Attribute' property. If the name of the attribute provided is 'X', then the the attributes added by" +
|
||||
" enrichment will take the form X.isp.<fieldName>")
|
||||
|
|
|
@ -61,7 +61,7 @@ import org.apache.nifi.processor.util.StandardValidators;
|
|||
@TriggerWhenAnyDestinationAvailable
|
||||
@Tags({"distribute", "load balance", "route", "round robin", "weighted"})
|
||||
@CapabilityDescription("Distributes FlowFiles to downstream processors based on a Distribution Strategy. If using the Round Robin "
|
||||
+ "strategy, the default is to assign each destination a weighting of 1 (evenly distributed). However, optional properties"
|
||||
+ "strategy, the default is to assign each destination a weighting of 1 (evenly distributed). However, optional properties "
|
||||
+ "can be added to the change this; adding a property with the name '5' and value '10' means that the relationship with name "
|
||||
+ "'5' will be receive 10 FlowFiles in each iteration instead of 1.")
|
||||
@DynamicProperty(name = "The relationship name (positive number)", value = "The relationship Weight (positive number)", description = "Adding a "
|
||||
|
|
Loading…
Reference in New Issue