Skip to content

Commit

Permalink
fix tap in site
Browse files Browse the repository at this point in the history
  • Loading branch information
clairemcginty committed Jan 29, 2024
1 parent 0659a78 commit e60c9e0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions site/src/main/paradox/extras/Sort-Merge-Bucket.md
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,8 @@ class SmbLocalFilesTest extends PipelineSpec {
val dir = Files.createTempDirectory("smb").toString

// Test write
runWithContext { sc =>
{
val sc = ScioContext()
val tap = SmbRealFilesJob.write(sc, dir)
val scioResult = sc.run().waitUntilDone()

Expand All @@ -471,7 +472,8 @@ class SmbLocalFilesTest extends PipelineSpec {
}

// Test read in separate ScioContext
runWithContext { sc =>
{
val sc = ScioContext()
val tap = SmbRealFilesJob.read(sc, dir).materialize
val scioResult = sc.run().waitUntilDone()

Expand Down

0 comments on commit e60c9e0

Please sign in to comment.