Skip to content

Commit 03607e9

Browse files
committed
fix: no longer deploy every PTD item twice
1 parent d2fba37 commit 03607e9

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1818
- Fixed Import All options not importing the Embedded Git configuration file
1919
- Improved performance of IDE editing and baselining of decomposed productions
2020
- Fixed Discard / Stash not working on deletes (#688)
21+
- Improved performance of deploying changes to decomposed production items (#690)
2122

2223
## [2.9.0] - 2025-01-09
2324

cls/SourceControl/Git/Utils.cls

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -754,6 +754,7 @@ ClassMethod Exists(ByRef pFilename) As %Boolean
754754
Return 0
755755
}
756756

757+
/// Adds this item to the list of items that are tracked by source control
757758
ClassMethod AddToServerSideSourceControl(InternalName As %String) As %Status
758759
{
759760
#dim i as %Integer
@@ -764,10 +765,6 @@ ClassMethod AddToServerSideSourceControl(InternalName As %String) As %Status
764765
continue
765766
}
766767
set @..#Storage@("items", item) = ""
767-
#dim sc as %Status = ..ImportItem(item, 1)
768-
if 'sc {
769-
set ec = $$$ADDSC(ec, sc)
770-
}
771768
}
772769
quit ec
773770
}

0 commit comments

Comments
 (0)