QCFractal icon indicating copy to clipboard operation
QCFractal copied to clipboard

Query Procedure with projection duplication

Open dgasmith opened this issue 6 years ago • 0 comments

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!

dgasmith avatar Aug 21 '19 20:08 dgasmith