Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove printlns from my debugging
  • Loading branch information
holdenk committed Aug 31, 2019
commit 3ccddbfe3e61127e6328e4ecfa0621d478df25ea
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ private[spark] trait SecretsTestsSuite { k8sSuite: KubernetesSuite =>

// Make sure our secret files are mounted correctly
val files = Utils.executeCommand("ls", s"$SECRET_MOUNT_PATH")
println(s"Found files ${files}")
files should include (ENV_SECRET_KEY_1)
files should include (ENV_SECRET_KEY_2)
// Validate the contents
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ object Utils extends Logging {
}

override def onClose(a: Int, b: String) {
println("closed")
closeLatch.countDown()
}

Expand Down