Custom Query (2152 matches)
Results (958 - 960 of 2152)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#903 | fixed | Proper handling of deleted packages in Solr serps | pudo | pudo |
Description |
Currently, deleted packages are filtered from search results after solr returns. That means result count can drop below the requested number, down to 0. Thus we need to filter before or in Solr. |
|||
#1170 | fixed | Production deployment docs out of date | dread | dread |
Description |
Need to cover pip-requirements.txt on different branches in the doc/deployment.rst. Also could do with tidying up upgrade.txt into this document too. |
|||
#2605 | fixed | Problem with user.get_groups | ross | ross |
Description |
From DR at DGU Basically get_groups() appears to cache its results, but this falls down when subsequent calls are in a different session. We get this when saving a dataset. get_groups() first gets called in the controller when it is trying to work out what permissions the user has. It later gets called, and by this time c.userobj is detached, so get_groups() fails. I'm working around this by refreshing c.userobj (from c.user) before calling get_groups(), but I wonder if the get_groups caching could detect the detached session and bypass the cache in this case? diff at https://gist.github.com/3003117 |