You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was able to configure in settings a CSP application that use the path /csp/myapp, that worked.
I have another application /slg and I'm unable to add it to Git.
I created the mapping as "/CSP/" - "/slg" - "csp/slg/", then in Studio when I right click on the CSP folder in the Namespace Work Area, select Git -> Add:
`porting new version of .slg to E:\git\iris-prod
No mapping with a matching coverage found for file E:/git/iris-prod
No mapping with a matching path found for file E:/git/iris-prod`
I think the problem (bug) is in the NormalizeInternalName() method in SourceControl.Git.Utils class, the line 985:
if $extract(name) '= "/" {
should be:
if ($extract(name) '= "/") && (type'="csp") {
After that modification (fix) my /slg csp application can be added to Git.
The text was updated successfully, but these errors were encountered:
isc-tleavitt
added
bug
Something isn't working
customer
Based on customer feedback (as opposed to something identified by developers)
labels
Jan 4, 2024
There is a problem with a CSP applications.
I was able to configure in settings a CSP application that use the path /csp/myapp, that worked.
I have another application /slg and I'm unable to add it to Git.
I created the mapping as "/CSP/" - "/slg" - "csp/slg/", then in Studio when I right click on the CSP folder in the Namespace Work Area, select Git -> Add:
`porting new version of .slg to E:\git\iris-prod
No mapping with a matching coverage found for file E:/git/iris-prod
No mapping with a matching path found for file E:/git/iris-prod`
I think the problem (bug) is in the NormalizeInternalName() method in SourceControl.Git.Utils class, the line 985:
if $extract(name) '= "/" {
should be:
if ($extract(name) '= "/") && (type'="csp") {
After that modification (fix) my /slg csp application can be added to Git.
The text was updated successfully, but these errors were encountered: