File tree 3 files changed +6
-4
lines changed
3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1
- 3936
1
+ 4106
Original file line number Diff line number Diff line change 1
1
// Set this to true to have stdout and stderr sent back to the server
2
- var captureStdoutStderr = false ;
2
+ var captureStdoutStderr = true ;
3
3
4
4
var hasModule = typeof Module === 'object' && Module ;
5
5
6
- var reportingURL = 'http://localhost:8888/ ' ;
6
+ var reportingURL = 'http://localhost:8888' ;
7
7
8
8
async function reportResultToServer ( result ) {
9
9
if ( reportResultToServer . reported ) {
Original file line number Diff line number Diff line change @@ -2127,7 +2127,9 @@ def do_POST(self):
2127
2127
self .send_response (200 )
2128
2128
self .end_headers ()
2129
2129
else :
2130
- print (f'do_POST: unexpected POST: { urlinfo .query } ' )
2130
+ print (f'do_POST: unexpected POST: { self .path } { urlinfo } ' )
2131
+ self .send_response (404 )
2132
+ self .end_headers ()
2131
2133
2132
2134
def do_GET (self ):
2133
2135
info = urlparse (self .path )
You can’t perform that action at this time.
0 commit comments