We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd9049e commit cc7a3f8Copy full SHA for cc7a3f8
sql/core/src/main/scala/org/apache/spark/sql/streaming/StreamingQueryManager.scala
@@ -206,7 +206,7 @@ class StreamingQueryManager private[sql] (sparkSession: SparkSession) {
206
if (useTempCheckpointLocation) {
207
// Delete the temp checkpoint when a query is being stopped without errors.
208
deleteCheckpointOnStop = true
209
- Utils.createTempDir(namePrefix = s"temporary").getCanonicalPath
+ Utils.createTempDir(namePrefix = s"temporary").getCanonicalFile.toURI.toString
210
} else {
211
throw new AnalysisException(
212
"checkpointLocation must be specified either " +
0 commit comments