QCFractal
QCFractal copied to clipboard
Query Procedure with projection duplication
Describe the bug When we query a projected procedure like so:
ret = client.query_procedures(id=1711898, procedure="optimization", projection={"trajectory": True, "id": True})
we get the projection as expected. However if we query:
ret = client.query_procedures(id=1711898, procedure="optimization", projection={"trajectory": True})
we get the expected result tiled 1000 times (maximum query limit I assume). Some odd logic there.
Expected behavior It should not duplicate the expected result to the query limit!