File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010 "args" : [" --client-only" , " counter-client.js" ],
1111 "cwd" : " ${workspaceRoot}/examples/scripts/"
1212 },
13+ {
14+ "type" : " node" ,
15+ "request" : " launch" ,
16+ "name" : " Launch Counter" ,
17+ "program" : " ${workspaceRoot}/packages/cli/dist/cli.js" ,
18+ "args" : [" counter.js" ],
19+ "cwd" : " ${workspaceRoot}/examples/scripts/"
20+ },
1321 {
1422 "type" : " node" ,
1523 "request" : " attach" ,
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ export default class DefaultServient extends Servient {
123123 }
124124
125125 let coapServer : CoapServer | undefined ;
126- if ( this . config . servient . clientOnly == null ) {
126+ if ( this . config . servient . clientOnly === false ) {
127127 if ( this . config . http != null ) {
128128 const httpServer = new HttpServer ( this . config . http ) ;
129129 this . addServer ( httpServer ) ;
You can’t perform that action at this time.
0 commit comments