turcsanyip commented on a change in pull request #3936: NIFI-6910 - Add 
ReportLineageToAtlas properties for connect timeout and read timeout
URL: https://github.com/apache/nifi/pull/3936#discussion_r358273324
 
 

 ##########
 File path: 
nifi-nar-bundles/nifi-atlas-bundle/nifi-atlas-reporting-task/src/main/java/org/apache/nifi/atlas/reporting/ReportLineageToAtlas.java
 ##########
 @@ -120,6 +121,24 @@
             .addValidator(StandardValidators.NON_BLANK_VALIDATOR)
             .build();
 
+    public static final PropertyDescriptor ATLAS_CONNECT_TIMEOUT = new 
PropertyDescriptor.Builder()
+            .name("atlas-connect-timeout")
+            .displayName("Atlas connection timeout")
+            .description("Max wait time for connection to Atlas.")
+            .required(true)
+            .defaultValue("60 sec")
+            .addValidator(StandardValidators.TIME_PERIOD_VALIDATOR)
+            .build();
+
+    public static final PropertyDescriptor ATLAS_READ_TIMEOUT = new 
PropertyDescriptor.Builder()
+            .name("atlas-read-timeout")
+            .displayName("Atlas connection read timeout")
 
 Review comment:
   Shouldn't it be "Atlas Read Timeout"?

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to