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
In a flask application I'm connecting to Rally on every user connection, on the second request I'm always getting the following error.
"pyral.context.RallyRESTAPIError: The current Workspace does not contain an accessible Project with the name of None"
I tracked down the cause to pyral/entity.py::getEntityName(candidate).
The function is returning PortfolioItem/Project instead of Project on the second invocation of that method which is resulting in portfolio items being returned instead of projects.
The text was updated successfully, but these errors were encountered:
It's possible there are custom portfolio, the team tried them out a couple years ago, but stopped using them and didn't clean anything up. The types are set to Project, Feature, and Stage.
I'll try to get a sample, representative project, I can share soon.
It is currently problematic in pyral to have a custom PortfolioItem sub-type named the same as a standard Rally WSAPI model entity, ie., a Project is a standard Rally entity, a custom PortfolioItem sub-type named 'Project' will have conflicts that are currently unresolved.
If you can provide some sample code, I'd like to determine if this is the root of the problem you've observed.
python 3.6
pyral 1.4.2
In a flask application I'm connecting to Rally on every user connection, on the second request I'm always getting the following error.
"pyral.context.RallyRESTAPIError: The current Workspace does not contain an accessible Project with the name of None"
I tracked down the cause to pyral/entity.py::getEntityName(candidate).
The function is returning PortfolioItem/Project instead of Project on the second invocation of that method which is resulting in portfolio items being returned instead of projects.
The text was updated successfully, but these errors were encountered: