We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2035af commit 2fe9c5fCopy full SHA for 2fe9c5f
src/iop/cls/IOP/Common.cls
@@ -19,18 +19,6 @@ Property %settings As %String(MAXLEN = "");
19
/// Instance of class
20
Property %class As %SYS.Python;
21
22
-Method %OnNew(pConfigName As %String) As %Status
23
-{
24
- set tSC = $$$OK
25
- try {
26
- $$$ThrowOnError(..Connect())
27
- $$$ThrowOnError($method($this,"initConfig",.pConfigName)) ; call subclass
28
- } catch ex {
29
- set tSC = ex.AsStatus()
30
- }
31
- quit tSC
32
-}
33
-
34
/// Get Class
35
Method GetClass() As %SYS.Python
36
{
@@ -53,6 +41,7 @@ Method OnInit() As %Status
53
41
54
42
set tSC = $$$OK
55
43
try {
44
+ $$$ThrowOnError(..Connect())
56
45
do ..%class."_dispatch_on_init"($this)
57
46
} catch ex {
58
47
set tSC = ex.AsStatus()
0 commit comments