We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57a1637 commit 57d7ca2Copy full SHA for 57d7ca2
pkg/rpc/k8s.go
@@ -117,8 +117,10 @@ func ExtractPvcFromURL(path string) string {
117
splitPrefix := ""
118
if strings.HasPrefix(path, RootPrefix) {
119
splitPrefix = RootPrefix
120
- } else if strings.HasPrefix(path, CacheRootPath) || strings.HasPrefix(path, AppDataRootPath) {
+ } else if strings.HasPrefix(path, CacheRootPath) {
121
splitPrefix = CacheRootPath
122
+ } else if strings.HasPrefix(path, AppDataRootPath) {
123
+ splitPrefix = AppDataRootPath
124
} else {
125
return ""
126
}
0 commit comments