InvisibleProgrammer commented on code in PR #3798:
URL: https://github.com/apache/hive/pull/3798#discussion_r1263712923


##########
ql/src/java/org/apache/hadoop/hive/ql/exec/repl/AtlasDumpTask.java:
##########
@@ -68,16 +70,23 @@ public class AtlasDumpTask extends Task<AtlasDumpWork> 
implements Serializable {
   private static final transient Logger LOG = 
LoggerFactory.getLogger(AtlasDumpTask.class);
   private static final long serialVersionUID = 1L;
   private transient AtlasRestClient atlasRestClient;
+  private AtlasDumpLogger replLogger;
 
   public AtlasDumpTask() {
     super();
   }
 
   @VisibleForTesting
-  AtlasDumpTask(final AtlasRestClient atlasRestClient, final HiveConf conf, 
final AtlasDumpWork work) {
+  AtlasDumpTask(final AtlasRestClient atlasRestClient, final HiveConf conf, 
final AtlasDumpWork work, AtlasDumpLogger replLogger) {
     this.conf = conf;
     this.work = work;
     this.atlasRestClient = atlasRestClient;
+    this.replLogger = replLogger;
+  }
+
+  @VisibleForTesting
+  AtlasDumpTask(final AtlasRestClient atlasRestClient, final HiveConf conf, 
final AtlasDumpWork work) {

Review Comment:
   I removed the extra constructor, thank you for your feedback. 



-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to