File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -312,11 +312,11 @@ jobs:
312
312
},
313
313
"arm64": {
314
314
cpu: {
315
- checksum: "51ce309f4f5d055fd226a154784812fce10396ad8f8b3478b94fff24569a5063 ",
315
+ checksum: "02be1bb313324e5f5d198acec61a68059f1694d4d13189ef52e9a3b427087ccb ",
316
316
url: "https://s3.firecoder.cc/macOS-arm64",
317
317
},
318
318
metal: {
319
- checksum: "51ce309f4f5d055fd226a154784812fce10396ad8f8b3478b94fff24569a5063 ",
319
+ checksum: "02be1bb313324e5f5d198acec61a68059f1694d4d13189ef52e9a3b427087ccb ",
320
320
url: "https://s3.firecoder.cc/macOS-arm64-metal"
321
321
},
322
322
}
Original file line number Diff line number Diff line change @@ -132,6 +132,7 @@ class Server {
132
132
] ,
133
133
{
134
134
detached : false ,
135
+ shell : true ,
135
136
}
136
137
) ;
137
138
@@ -191,6 +192,7 @@ class Server {
191
192
this . serverProcess . on ( "close" , ( code ) => {
192
193
Logger . trace ( `child process exited with code ${ code } ` , {
193
194
component : "llama" ,
195
+ sendTelemetry : true ,
194
196
} ) ;
195
197
} ) ;
196
198
@@ -233,7 +235,7 @@ class Server {
233
235
const osplatform = os . platform ( ) ;
234
236
const osmachine = os . machine ( ) ;
235
237
const isMacArm64 = osplatform === "darwin" && osmachine === "arm64" ;
236
- const res = await fetch ( `${ this . serverUrl } /${ " health" } ` , {
238
+ const res = await fetch ( `${ this . serverUrl } /health` , {
237
239
method : "GET" ,
238
240
} ) ;
239
241
if ( res . ok ) {
You can’t perform that action at this time.
0 commit comments