Skip to content

Commit

Permalink
Added missing ".transactionally"
Browse files Browse the repository at this point in the history
  • Loading branch information
enragedginger committed Aug 9, 2016
1 parent ce38f24 commit 8afdb6f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class LargeObjectSupportSuite extends FunSuite {
val largeObjectUploadStream = new ByteArrayInputStream(testString.getBytes)
val uploadAction = driver.buildLargeObjectUploadAction(largeObjectUploadStream)
val composedAction = uploadAction.flatMap(oid => LargeObjectStreamingDBIOAction(oid))
val dbPublisher = db.stream(composedAction)
val dbPublisher = db.stream(composedAction.transactionally)

val messageBuffer: StringBuffer = new StringBuffer()
val f = dbPublisher.foreach(bytes => messageBuffer.append(new String(bytes))).andThen {
Expand Down

0 comments on commit 8afdb6f

Please sign in to comment.