fix: on windows avoid ':' as part of the object name (#19907)

fixes #18865
avoid-colon
This commit is contained in:
Harshavardhana
2024-06-10 20:13:30 -07:00
committed by GitHub
parent 614981e566
commit 55aa431578
5 changed files with 16 additions and 14 deletions

View File

@@ -231,7 +231,7 @@ func parseRequestToken(token string) (subToken string, nodeIndex int) {
if token == "" {
return token, -1
}
i := strings.Index(token, getBatchJobIDSeparator())
i := strings.Index(token, getKeySeparator())
if i < 0 {
return token, -1
}