File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -312,11 +312,11 @@ jobs:
312312 },
313313 "arm64": {
314314 cpu: {
315- checksum: "51ce309f4f5d055fd226a154784812fce10396ad8f8b3478b94fff24569a5063 ",
315+ checksum: "02be1bb313324e5f5d198acec61a68059f1694d4d13189ef52e9a3b427087ccb ",
316316 url: "https://s3.firecoder.cc/macOS-arm64",
317317 },
318318 metal: {
319- checksum: "51ce309f4f5d055fd226a154784812fce10396ad8f8b3478b94fff24569a5063 ",
319+ checksum: "02be1bb313324e5f5d198acec61a68059f1694d4d13189ef52e9a3b427087ccb ",
320320 url: "https://s3.firecoder.cc/macOS-arm64-metal"
321321 },
322322 }
Original file line number Diff line number Diff line change @@ -132,6 +132,7 @@ class Server {
132132 ] ,
133133 {
134134 detached : false ,
135+ shell : true ,
135136 }
136137 ) ;
137138
@@ -191,6 +192,7 @@ class Server {
191192 this . serverProcess . on ( "close" , ( code ) => {
192193 Logger . trace ( `child process exited with code ${ code } ` , {
193194 component : "llama" ,
195+ sendTelemetry : true ,
194196 } ) ;
195197 } ) ;
196198
@@ -233,7 +235,7 @@ class Server {
233235 const osplatform = os . platform ( ) ;
234236 const osmachine = os . machine ( ) ;
235237 const isMacArm64 = osplatform === "darwin" && osmachine === "arm64" ;
236- const res = await fetch ( `${ this . serverUrl } /${ " health" } ` , {
238+ const res = await fetch ( `${ this . serverUrl } /health` , {
237239 method : "GET" ,
238240 } ) ;
239241 if ( res . ok ) {
You can’t perform that action at this time.
0 commit comments