Skip to content

Commit 7c19162

Browse files
upgrade openlineage java (#2677)
Signed-off-by: Pawel Leszczynski <[email protected]>
1 parent f6be002 commit 7c19162

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

api/src/test/java/marquez/api/models/ActiveRun.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,15 @@ public String getJobName() {
5454
}
5555

5656
public void startRun() {
57-
olClient.emit(ol.newRunEvent(START, newEventTime(), run, job, inputs, outputs));
57+
olClient.emit(ol.newRunEvent(newEventTime(), START, run, job, inputs, outputs));
5858
}
5959

6060
public void endRun() {
6161
endRun(COMPLETE);
6262
}
6363

6464
public void endRun(@NonNull OpenLineage.RunEvent.EventType eventType) {
65-
olClient.emit(ol.newRunEvent(eventType, newEventTime(), run, job, inputs, outputs));
65+
olClient.emit(ol.newRunEvent(newEventTime(), eventType, run, job, inputs, outputs));
6666
}
6767

6868
private static ZonedDateTime newEventTime() {

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ subprojects {
5757
junit5Version = '5.10.0'
5858
lombokVersion = '1.18.28'
5959
mockitoVersion = '5.4.0'
60-
openlineageVersion = '0.26.0'
60+
openlineageVersion = '1.4.1'
6161
slf4jVersion = '1.7.36'
6262
postgresqlVersion = '42.6.0'
6363
}

0 commit comments

Comments
 (0)