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.
Session ID
1 parent dc6d0e8 commit 40a4943Copy full SHA for 40a4943
Sources/SparkConnect/SparkSession.swift
@@ -44,9 +44,9 @@ public actor SparkSession {
44
self.client = SparkConnectClient(remote: connection)
45
// Since `Session ID` belongs to `SparkSession`, we handle this here.
46
if connection.contains(regexSessionID) {
47
- self.sessionID = connection.firstMatch(of: regexSessionID)!.1.uppercased()
+ self.sessionID = connection.firstMatch(of: regexSessionID)!.1.lowercased()
48
} else {
49
- self.sessionID = UUID().uuidString
+ self.sessionID = UUID().uuidString.lowercased()
50
}
51
self.conf = RuntimeConf(self.client)
52
0 commit comments