Skip to content

Commit b68b580

Browse files
authored
Add missing showExpandedEvents to .scala (#978)
See also 463b753 JAVA-4585
1 parent 0c5a79d commit b68b580

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

driver-scala/src/it/scala/org/mongodb/scala/syncadapter/SyncChangeStreamIterable.scala

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,4 +94,9 @@ case class SyncChangeStreamIterable[T](wrapped: ChangeStreamObservable[T])
9494
wrapped.comment(comment)
9595
this
9696
}
97+
98+
override def showExpandedEvents(showExpandedEvents: Boolean): ChangeStreamIterable[T] = {
99+
wrapped.showExpandedEvents(showExpandedEvents)
100+
this
101+
}
97102
}

0 commit comments

Comments
 (0)