Skip to content

Commit

Permalink
fix: alternative <FRAMESTACK> solution
Browse files Browse the repository at this point in the history
  • Loading branch information
isc-tleavitt committed Feb 6, 2025
1 parent 6e6e6d7 commit 9859cb7
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/cls/IPM/Utils/Migration.cls
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ ClassMethod RunAll(verbose As %Boolean = 1) As %Status
}
Try {
Set $Namespace = $Zstrip(ns,"<>WC")
Do ..MigrateReposFromIPM09(verbose) // Do this first; MigrateZPMToIPM will fail with <FRAMESTACK> otherwise.
Do ..MigrateZPMToIPM(verbose)
Do ..MigrateReposFromIPM09(verbose)
} Catch e {
Set sc = $$$ADDSC(sc, e.AsStatus())
}
Expand Down Expand Up @@ -176,9 +176,6 @@ ClassMethod MigrateRepoDefinitions(verbose As %Boolean = 1) As %Status
}
}

// Need to kill indices first to avoid a <FRAMESTACK> saving an existing Remote repo
Kill ^IPM.Repo.DefinitionI

TSTART
Set key = ""
For {
Expand Down

0 comments on commit 9859cb7

Please sign in to comment.