Runner.sock is not cleaned up after classification

I am using edge-impulse-linux NodeJS SDK library to do classification of images.
I am using LinuxImpulseRunner in following way:

async function execute () {
....
let runner = new LinuxImpulseRunner(modelfile);
let model = await runner.init();
let resized = await resizeImage(model, imagefile)
 let classifyRes = await runner.classify(resized.features)
await runner.stop();
...
}

It works perfectly, but the /dev/shm folder after some time becomes full of edge-impulse-cliXXXXX directories with runner.sock file inside,
And afer some days of calls of that function (I am doing object detection on an image which is taken by my PiCamera every 20 seconds…) I got following error:

ERROR {\"errno\":-28,\"code\":\"ENOSPC\",\"syscall\":\"mkdtemp\",\"path\":\"/dev/shm/edge-impulse-cliEpCsfU\",\"name\":\"Error\",\"message\":\"ENOSPC: no space left on device, mkdtemp '/dev/shm/edge-impulse-cliEpCsfU'\",\"stack\":\"Error: ENOSPC: no space left on device, mkdtemp '/dev/shm/edge-impulse-cliEpCsfU'\"}","context":"default","severity":"DEBUG"}

Does the call to stop() do not perform cleanup ?
Any SDK API method exists to avoid that issue ?

ter info I am using RaspberryPI

Hello @ramazanyich,

Thanks for reporting that, I’ll let our Core Engineers know to see if we can perform a cleanup when calling the runner.stop() function.

Regards,

Louis

Hello @ramazanyich,

Sorry for the late reply, it seems it was stuck somewhere in our backlog.
This has now been fixed. A new CLI version will be pushed very soon.
You’ll need to upgrade your edge-impulse-linux CLI.

Best,

Louis

The Edge Impulse for Linux CLI (edge-impulse-linux) has now been updated.
The version with the fix is 1.4.8.

Best,

Louis