File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ export default class Saffron {
108
108
* @param sourceJson The json object of the source file.
109
109
* @throws SourceException if there is a problem parsing the source file.
110
110
*/
111
- async parse ( sourceJson : object ) : Promise < Article [ ] > {
111
+ static async parse ( sourceJson : object ) : Promise < Article [ ] > {
112
112
let source : Source = await Source . fileToSource ( sourceJson ) ;
113
113
source . instructions . getSource = ( ) : Source => source ;
114
114
Original file line number Diff line number Diff line change @@ -17,9 +17,10 @@ import * as https from "https";
17
17
export default class Grid {
18
18
19
19
private static instance : Grid
20
+
20
21
private declare readonly isMain : boolean
21
22
private declare readonly workersIds : string [ ] ;
22
- private declare workersClients : { workersIds : string [ ] , socketId : string } [ ] ;
23
+ private declare readonly workersClients : { workersIds : string [ ] , socketId : string } [ ] ;
23
24
24
25
private declare readonly http_s_server : any ;
25
26
private declare readonly server : ServerIO . Server ;
@@ -30,7 +31,7 @@ export default class Grid {
30
31
this . workersIds = [ ] ;
31
32
this . workersClients = [ ] ;
32
33
33
- if ( Config . getOption ( ConfigOptions . GRID_DISTRIBUTED ) ) {
34
+ if ( Config . getOption ( ConfigOptions . GRID_DISTRIBUTED ) ) {
34
35
if ( typeof Config . getOption ( ConfigOptions . GRID_AUTH ) !== 'string' )
35
36
throw new Error ( 'InvalidAuthException The grid authToken must be type string on distributed: true' ) ;
36
37
}
You can’t perform that action at this time.
0 commit comments