Skip to content

Commit 576b432

Browse files
committed
Fix wrong change
1 parent 0cc1dd6 commit 576b432

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/structured-streaming-programming-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1499,7 +1499,7 @@ spark.streams.addListener(new StreamingQueryListener() {
14991499
System.out.println("Query terminated: " + queryTerminated.id());
15001500
}
15011501
@Overrides void onQueryProgress(QueryProgressEvent queryProgress) {
1502-
System.out.println("Query made progress: " + queryProgress.lastProgress());
1502+
System.out.println("Query made progress: " + queryProgress.progress());
15031503
}
15041504
});
15051505
{% endhighlight %}

0 commit comments

Comments
 (0)