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
When adding a new project to the org, an error message appears and the project is not available for the CLI session until the log-out + log-in. The local config is not properly updated, as can be seen by inspecting the local config db.
Example:
Steps to reproduce the behavior:
$ neuro config switch-org lin-kuei
$ sqlite3 -nullvalue null ~/.neuro/db "SELECT projects FROM main;" | jq .
[
{
"name": "test",
"cluster_name": "default",
"org_name": null,
"role": "admin"
},
{
"name": "test-project-visibility",
"cluster_name": "default",
"org_name": null,
"role": "admin"
}
]
$ n admin add-project default sektor --org lin-kuei
Added project sektor to cluster default to org lin-kuei. Info:
Name sektor
Default role writer
Is default project False
ERROR: Project sektor doesn't exist in a list of available tenant projects [].
Full logs are available under /home/andrii/.neuro/logs/neuro-run-2023-05-30_09-02-55.txt
$ sqlite3 -nullvalue null ~/.neuro/db "SELECT projects FROM main;" | jq .
[
{
"name": "test",
"cluster_name": "default",
"org_name": null,
"role": "admin"
},
{
"name": "test-project-visibility",
"cluster_name": "default",
"org_name": null,
"role": "admin"
}
]
Description:
When adding a new project to the org, an error message appears and the project is not available for the CLI session until the log-out + log-in. The local config is not properly updated, as can be seen by inspecting the local config db.
Example:
Steps to reproduce the behavior:
After logout and login:
The text was updated successfully, but these errors were encountered: