We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For some reason, there is an old non-active workspace in my workspaces list, even though it's not active (not opened recently, not pinned).
Workspace ID is blue-ferret-kisxfyd7:
blue-ferret-kisxfyd7
mysql> select id, creationTime, contextURL, description, pinned, softDeleted, softDeletedTime, contentDeletedTime from d_b_workspace where id = 'blue-ferret-kisxfyd7'; +----------------------+--------------------------+------------------------------------------------+--------------------------------------+--------+-------------+-----------------+--------------------+ | id | creationTime | contextURL | description | pinned | softDeleted | softDeletedTime | contentDeletedTime | +----------------------+--------------------------+------------------------------------------------+--------------------------------------+--------+-------------+-----------------+--------------------+ | blue-ferret-kisxfyd7 | 2021-03-24T09:04:52.429Z | https://github.com/gitpod-io/sveltejs-template | gitpod-io/sveltejs-template - master | 0 | NULL | | | +----------------------+--------------------------+------------------------------------------------+--------------------------------------+--------+-------------+-----------------+--------------------+
Surprisingly, it has zero instances 🤔 maybe that's the root cause:
mysql> select * from d_b_workspace_instance where workspaceId = 'blue-ferret-kisxfyd7'; Empty set (0.01 sec)
No response
The text was updated successfully, but these errors were encountered:
Update: After accidentally starting it, and stopping it again, it disappeared from my list.
Then, after deleting the instance from the DB, it showed up again:
mysql> delete from d_b_workspace_instance where workspaceId = 'blue-ferret-kisxfyd7'; Query OK, 1 row affected (0.01 sec)
Sorry, something went wrong.
[dashboard] Don't show workspaces with zero instances as 'active'
022eed2
Fixes #3780
269c9dc
3b67baa
Fixes gitpod-io#3780
Successfully merging a pull request may close this issue.
Bug description
For some reason, there is an old non-active workspace in my workspaces list, even though it's not active (not opened recently, not pinned).
Workspace ID is
blue-ferret-kisxfyd7
:Surprisingly, it has zero instances 🤔 maybe that's the root cause:
Steps to reproduce
Expected behavior
No response
Example repository
No response
The text was updated successfully, but these errors were encountered: