Skip to content

Commit 7ae05d7

Browse files
committed
[FIX] Problem with starting monitor.
1 parent aa42c7d commit 7ae05d7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

csp-data/csp/confpage.csp.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ if $data(^SYSMONClassTemp)
7272
7373
<csp:method name = "StopMonitor">
7474
new $namespace
75-
set $namespace = "SYSMON"
75+
set $namespace = "%SYS"
7676
set sc = ##class(%SYS.Monitor).Stop()
7777
if sc=1 {
7878
&js< alert(" System Monitor stopped")>
@@ -85,7 +85,7 @@ if sc=1 {
8585
8686
<csp:method name = "StartMonitor">
8787
new $namespace
88-
set $namespace = "SYSMON"
88+
set $namespace = "%SYS"
8989
set sc = ##class(%SYS.Monitor).Start()
9090
if sc=1 {
9191
&js< alert("System Monitor started")>
@@ -98,7 +98,7 @@ if sc=1 {
9898
9999
<csp:method name = "CheckMon">
100100
new $namespace
101-
set $namespace = "SYSMON"
101+
set $namespace = "%SYS"
102102
set sc = ##class(%SYS.Monitor).State()
103103
if sc=0 {
104104
&js< document.getElementById('btnstart').disabled = false;

0 commit comments

Comments
 (0)