mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-24 17:18:02 +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;
|
Connection conn;
|
||||||
|
|
||||||
public AppworxLineageEtl(int appId, long whExecId, Properties properties) {
|
public AppworxLineageEtl(long whExecId, Properties properties) {
|
||||||
super(whExecId, properties);
|
super(whExecId, properties);
|
||||||
try {
|
try {
|
||||||
setUp();
|
setUp();
|
||||||
|
@ -23,7 +23,7 @@ public class AppworxLineageEtlTest {
|
|||||||
|
|
||||||
@BeforeTest
|
@BeforeTest
|
||||||
public void setUp() throws Exception {
|
public void setUp() throws Exception {
|
||||||
awl = new AppworxLineageEtl(3, 0L, new Properties());
|
awl = new AppworxLineageEtl(0L, new Properties());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test(groups = {"needConfig"})
|
@Test(groups = {"needConfig"})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user