Skip to content

Commit

Permalink
Merge pull request #468 from sm-shaw/467
Browse files Browse the repository at this point in the history
Fix for Issue #467 CLI myerrproc and remote_command opmode
  • Loading branch information
abondvt89 committed Dec 7, 2022
2 parents 7e23d83 + 2f41c6a commit a8543ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/generic/gencli.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ proc myerrorproc { id info } {
} else {
if { [ info exists threadsbytid($id) ] } {
set vuser [expr $threadsbytid($id) + 1]
set info "Error in Virtual User [$vuser]: $info"
set info "Error in Virtual User $vuser: $info"
putscli $info
hdbjobs eval {INSERT INTO JOBOUTPUT VALUES($jobid, $vuser, $info)}
} else {
Expand Down
2 changes: 1 addition & 1 deletion src/generic/genmodes.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ proc distribute { } {
}

proc remote_command { command } {
upvar 1 opmode opmode
upvar #0 opmode opmode
global masterlist
if { $opmode eq "Primary" } {
foreach f $masterlist {
Expand Down

0 comments on commit a8543ef

Please sign in to comment.