Paul Sanders

Results 144 comments of Paul Sanders

I never noticed this before but since we started looking at this I see you can tell if the layer used cache if it starts with `CACHED`. So in both...

FastAPI blocking functions are run in a threadpool so they don't block (more info [here](https://fastapi.tiangolo.com/async/?h=threadpool#path-operation-functions)) and run asynchronously. There is also an option in FastAPI to run things as [background...

The enum itself in fideslang has a mix for [this value](https://github.com/ethyca/fideslang/blob/16d694889395b94d7b7782ecd23e9bf1fe479a8f/src/fideslang/models.py#L115). It is the only one in the enum where the value doesn't match the key. Should we update there...

Right it is `LEGITIMATE_INTEREST = "Legitimate Interests"`

Are you installing from pypi with `pip install fidesctl` or from a clone with `pip install -e .`? If from pypi does `pip install fidesctl[mssql]` make a difference? Or if...

@waghsac if you do have the optional dependencies installed can you try wrapping your connection string in quotes to see if it makes any difference? `fidesctl generate dataset db "mssql://WAGHSAC\SQLEXPRESS/AdventureWorks2019?trusted_connection=yes”...

Do you have any more information about the failure? I can’t recreate it on my end. Looking at the test my best guess is it finishes adding the documents before...

I have run some experiments and am still unsuccessful at getting the current test to fail. I found that I can make the test fail by setting the interval to...

Yes I agree with you about setting it to 0. However I can't think of any other solution so I'm not sure the best way to go with this. How...

This takes the docker vs installed MeiliSearch out as a possible cause since CI is using docker also. Probably a good idea to try to log it. Currently its next...