When I try to delete the room via API, it says no room exists but on dashboard I have one that is showing as active for 6 hours and another one for the past 30 mins. Why do I have these and how to gracefully end them? Also, it would be nice to have the ability to do it directly on the dashboard.
Hi, which room ID is this?
These two other issues are relevant:
Ran into this issue again this morning.
LK CLI says: All 10 rooms return not_found. lk room list shows zero active rooms.
LK Cloud dashboard says: 7 of those rooms show ACTIVE with “In progress”, durations climbing (52-131 min), 0 participants. Only 2 show CLOSED
for room in
“dev–pros-moe-b240b1f3-cbe0-42a5-872c-0d51800c52c3”
“dev–supp-naga-b7de715a-8a2b-40f8-997f-0bdbb42d9fb4”
“dev–self-internal-e0cdd289-9c32-4aab-ad3d-d0f4f72b70c6”
“dev–self-internal-ff5faff6-203d-4665-ae37-01b1e68ae04f”
“dev–self-internal-a3681d54-a604-4600-9598-4a3e6bb85fa4”
“dev–pros-joe-d3050b70-776b-4bdf-a7fa-b90a255b5c5a”
“dev–pros-joe-eef20be0-292a-4eeb-8c8d-60f42a9607e7”
“dev–supp-naga-9cbfc984-92c4-4ce6-be4c-3e1c6c8812dd”
“dev–supp-naga-e645e00d-1bd3-4f34-b91f-8de72382c751”
“dev–supp-naga-b21c0a6f-3d7d-4d2e-ae27-e33efbbd0354”; do
result=$(lk room delete “$room” 2>&1 | grep -v “WARNING:”)
echo “$room → $result”
done
dev–pros-moe-b240b1f3-cbe0-42a5-872c-0d51800c52c3 → twirp error not_found: requested room does not exist
dev–supp-naga-b7de715a-8a2b-40f8-997f-0bdbb42d9fb4 → twirp error not_found: requested room does not exist
dev–self-internal-e0cdd289-9c32-4aab-ad3d-d0f4f72b70c6 → twirp error not_found: requested room does not exist
dev–self-internal-ff5faff6-203d-4665-ae37-01b1e68ae04f → twirp error not_found: requested room does not exist
dev–self-internal-a3681d54-a604-4600-9598-4a3e6bb85fa4 → twirp error not_found: requested room does not exist
dev–pros-joe-d3050b70-776b-4bdf-a7fa-b90a255b5c5a → twirp error not_found: requested room does not exist
dev–pros-joe-eef20be0-292a-4eeb-8c8d-60f42a9607e7 → twirp error not_found: requested room does not exist
dev–supp-naga-9cbfc984-92c4-4ce6-be4c-3e1c6c8812dd → twirp error not_found: requested room does not exist
dev–supp-naga-e645e00d-1bd3-4f34-b91f-8de72382c751 → twirp error not_found: requested room does not exist
dev–supp-naga-b21c0a6f-3d7d-4d2e-ae27-e33efbbd0354 → twirp error not_found: requested room does not exist
I struggled to find those rooms, but then I noticed that the double hyphen has been autocorrected to a single en dash, so “dev–self-internal-ff5faff6-203d-4665-ae37-01b1e68ae04f“ is actually dev--self-internal-ff5faff6-203d-4665-ae37-01b1e68ae04f.
Not sure if this happened when you were copying the question, or before you fed it to the CLI, but if the latter, it would explain why the rooms were not found.
