Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ allprojects {
dockerClientVersion = '8.14.5'
mysqlVersion = '8.0.13'
postgresqlVersion = '42.2.5'
ojdbc6Version = '11.2.0.1.0'
ojdbc6Version = '11.2.0.4'
zookeeperVersion = '3.4.13'
jets3tVersion = '0.9.4'
roaringBitmapVersion = '0.6.66'
Expand Down
2 changes: 1 addition & 1 deletion external/docker-integration-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ dependencies {
testCompile group: 'org.apache.httpcomponents', name: 'httpcore', version: httpCoreVersion
testCompile group: 'mysql', name: 'mysql-connector-java', version: mysqlVersion
testCompile group: 'org.postgresql', name: 'postgresql', version: postgresqlVersion
testCompile group: 'com.oracle', name: 'ojdbc6', version: ojdbc6Version
testCompile group: 'com.oracle.database.jdbc', name: 'ojdbc6', version: ojdbc6Version
testCompile group: 'com.sun.jersey', name: 'jersey-server', version: sunJerseyVersion
testCompile group: 'com.sun.jersey', name: 'jersey-core', version: sunJerseyVersion
testCompile group: 'com.sun.jersey', name: 'jersey-servlet', version: sunJerseyVersion
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@ class SparkSession private(
this.streams.addListener(listener)
sessionState.registerStreamingQueryListener(listener)
if (sparkContext.ui.isDefined) {
// logInfo("Updating Web UI to add structure streaming tab.")
logDebug("Updating Web UI to add structure streaming tab.")
sparkContext.ui.foreach(ui => {
var structStreamTabPresent: Boolean = false
val tabsList = ui.getTabs
Expand All @@ -732,7 +732,7 @@ class SparkSession private(
// Check if Structure Streaming Tab is present or not
if (tab.prefix.equalsIgnoreCase("structuredstreaming")) {
structStreamTabPresent = true
// logInfo("Structure Streaming UI Tab is already present.")
logDebug("Structure Streaming UI Tab is already present.")
}
})
// Add Structure Streaming Tab, iff not present
Expand All @@ -744,7 +744,7 @@ class SparkSession private(
new SnappyStreamingTab(ui, listener)
}
})
logTrace("Updating Web UI to add structured streaming tab is Done.")
logDebug("Updating Web UI to add structured streaming tab is Done.")
}
}

Expand Down