Skip to content

Commit e396675

Browse files
committed
fix: items cache now populated correctly when adding new production
1 parent 0528427 commit e396675

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

cls/SourceControl/Git/File.cls

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ ClassMethod ExternalNameToInternalName(ExternalName As %String) As %String
4747
}
4848
}
4949
if itemIsPTD && ##class(%Library.EnsembleMgr).IsEnsembleNamespace() {
50-
do ##class(SourceControl.Git.Production).ParseExternalName(ExternalName,.internalName)
50+
do ##class(SourceControl.Git.Production).ParseExternalName($replace(ExternalName,"\","/"),.internalName)
5151
} elseif (($data(outName)=1) || ($data(outName) = 11 && ($order(outName(""),-1) = $order(outName(""))))) && ($zconvert(##class(SourceControl.Git.Utils).Type(outName),"U") '= "CSP") {
5252
set internalName = outName
5353
}
@@ -84,4 +84,3 @@ Storage Default
8484
}
8585

8686
}
87-

0 commit comments

Comments
 (0)