You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// get room from context
this.room = this.ctx.room;
// create room service client
this.rsc = new RoomServiceClient(config.livekit.url);
// try to delete the room
console.log(Try to delete room ${this.room.name});
await this.rsc.deleteRoom(this.room.name); // <--- this command just hangs
console.log(Room deleted ${this.room.name});
Additional information
No response
The text was updated successfully, but these errors were encountered:
Describe the bug
I previously reported this issue in the
node-sdk
repository a couple of weeks ago, however there seems to be no activity. Original issueCalling
deleteRoom()
on aRoomServiceClient
instance will hang and the room will not be deleted.This issue still persists with all livekit related packages updated to their latest versions.
Relevant log output
No response
Describe your environment
npx envinfo --system --binaries --npmPackages "livekit*"
System:
OS: macOS 13.6.3
CPU: (12) x64 Intel(R) Core(TM) i7-9750H CPU @ 2.60GHz
Memory: 233.53 MB / 16.00 GB
Shell: 5.9 - /bin/zsh
Binaries:
Node: 20.18.1 - ~/.nvm/versions/node/v20.18.1/bin/node
Yarn: 1.22.22 - ~/.nvm/versions/node/v20.18.1/bin/yarn
npm: 10.8.2 - ~/.nvm/versions/node/v20.18.1/bin/npm
npmPackages:
livekit-server-sdk: ^2.9.7 => 2.9.7
npx envinfo --system --binaries --npmPackages "@livekit/*"
System:
OS: macOS 13.6.3
CPU: (12) x64 Intel(R) Core(TM) i7-9750H CPU @ 2.60GHz
Memory: 27.03 MB / 16.00 GB
Shell: 5.9 - /bin/zsh
Binaries:
Node: 20.18.1 - ~/.nvm/versions/node/v20.18.1/bin/node
Yarn: 1.22.22 - ~/.nvm/versions/node/v20.18.1/bin/yarn
npm: 10.8.2 - ~/.nvm/versions/node/v20.18.1/bin/npm
npmPackages:
@livekit/agents: ^0.6.3 => 0.6.3
@livekit/agents-plugin-deepgram: ^0.5.3 => 0.5.3
@livekit/agents-plugin-elevenlabs: ^0.6.0 => 0.6.0
@livekit/agents-plugin-openai: ^0.8.1 => 0.8.1
@livekit/agents-plugin-silero: ^0.5.3 => 0.5.3
Minimal reproducible example
// get room from context
this.room = this.ctx.room;
// create room service client
this.rsc = new RoomServiceClient(config.livekit.url);
// try to delete the room
console.log(
Try to delete room ${this.room.name}
);await this.rsc.deleteRoom(this.room.name); // <--- this command just hangs
console.log(
Room deleted ${this.room.name}
);Additional information
No response
The text was updated successfully, but these errors were encountered: