File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
frontend/jupyter/nbgrader Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -211,7 +211,7 @@ export class ConatSocketServer extends ConatSocketBase {
211
211
try {
212
212
await socket . end ( { timeout } ) ;
213
213
} catch ( err ) {
214
- console . log ( " WARNING: error ending socket -- ${err}" ) ;
214
+ console . log ( ` WARNING: error ending socket -- ${ err } ` ) ;
215
215
}
216
216
} ;
217
217
await Promise . all ( Object . keys ( this . sockets ) . map ( end ) ) ;
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ function replace_mark_region(input: string): string | undefined {
31
31
// check to make sure this isn't a nested BEGIN MARK SCHEME region
32
32
if ( in_region )
33
33
throw Error (
34
- " encountered nested ${begin_delimiter}, which is not allowed"
34
+ ` encountered nested ${ begin_delimiter } , which is not allowed` ,
35
35
) ;
36
36
37
37
in_region = true ;
@@ -52,7 +52,7 @@ function replace_mark_region(input: string): string | undefined {
52
52
// we finished going through all the lines, but didn't find a
53
53
// matching END statement
54
54
if ( in_region ) {
55
- throw Error ( " no matching ${end_delimiter} found" ) ;
55
+ throw Error ( ` no matching ${ end_delimiter } found` ) ;
56
56
}
57
57
58
58
// replace the area?
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ export function handleHealth(
14
14
res : ServerResponse ,
15
15
) {
16
16
const healthy = server . isHealthy ( ) ;
17
- logger . debug ( " /health reporting conat is healthy=${healthy}" ) ;
17
+ logger . debug ( ` /health reporting conat is healthy=${ healthy } ` ) ;
18
18
if ( healthy ) {
19
19
res . statusCode = 200 ;
20
20
res . end ( "healthy" ) ;
You can’t perform that action at this time.
0 commit comments