mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-23 16:48:12 +00:00
Fix AppWorxLineageEtl's constructor (#707)
This commit is contained in:
parent
077c70f173
commit
1c0eeea181
@ -26,7 +26,7 @@ public class AppworxLineageEtl extends EtlJob {
|
||||
|
||||
Connection conn;
|
||||
|
||||
public AppworxLineageEtl(int appId, long whExecId, Properties properties) {
|
||||
public AppworxLineageEtl(long whExecId, Properties properties) {
|
||||
super(whExecId, properties);
|
||||
try {
|
||||
setUp();
|
||||
|
@ -23,7 +23,7 @@ public class AppworxLineageEtlTest {
|
||||
|
||||
@BeforeTest
|
||||
public void setUp() throws Exception {
|
||||
awl = new AppworxLineageEtl(3, 0L, new Properties());
|
||||
awl = new AppworxLineageEtl(0L, new Properties());
|
||||
}
|
||||
|
||||
@Test(groups = {"needConfig"})
|
||||
|
Loading…
x
Reference in New Issue
Block a user