Netflix / lemur-docker

Docker files for the Lemur certificate orchestration tool
170 stars 83 forks source link

Please close - moved to Lemur: API docs mismatch with the implementation of filter queries. #8

Closed mik373 closed 8 years ago

mik373 commented 8 years ago

The docs claim that authorities and destinations GET API calls can be filtered using the filter query param:

filter – key value pair. format is k=v;

But the actual implementation splits k and v using ';' characters in the corresponding service.py

if filt: terms = filt.split(';')

I got my queries working using ; but the docs are wrong.