File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -2123,8 +2123,10 @@ function makedie( instance, ctxt ) {
2123
2123
if ( err ) console_error ( err ) ;
2124
2124
console_error ( stderrmsg )
2125
2125
console_error ( "\n\nSENECA TERMINATED at " + ( new Date ( ) . toISOString ( ) ) +
2126
- ". See above for error report.\n\n" )
2127
- process . exit ( 1 )
2126
+ ". See above for error report.\n\n" )
2127
+
2128
+ // can not exit in the browser
2129
+ //process.exit(1)
2128
2130
} )
2129
2131
}
2130
2132
}
@@ -2137,7 +2139,8 @@ function makedie( instance, ctxt ) {
2137
2139
console_error ( stderrmsg )
2138
2140
console_error ( "\n\nSENECA TERMINATED (on timeout) at " + ( new Date ( ) . toISOString ( ) ) +
2139
2141
".\n\n" )
2140
- process . exit ( 2 ) ;
2142
+ // can not exit in the browser
2143
+ //process.exit(2);
2141
2144
} , so . deathdelay ) ;
2142
2145
killtimer . unref ( ) ;
2143
2146
}
You can’t perform that action at this time.
0 commit comments