Bill Katz

Results 57 comments of Bill Katz

@tingzhao Was this solved on NeuTu side or has not reappeared?

Hit the same issue and the prior fixes aren't working. I had to create an APIRoute and wire it into any APIRouter that needs CORS handling. Here's the documentation pertinent...

I noticed that OPTIONS requests were being denied until I explicitly added an endpoint handler like `@router.options() ...` On further investigation, I saw that starlette allows a kind of path...

A couple of people (@gocreating) find that changing order of middleware can fix their problem, but I'm wondering if that only works if they aren't using APIRouter approaches (https://fastapi.tiangolo.com/tutorial/bigger-applications/#another-module-with-apirouter). I...

@stuarteberg It's a "normal" error in that if you run a HEAD request, if there are any supervoxels for the given label that do not exist in the database, then...

@pgunn Now that you have the sync between your `tarsupervoxels` and `labelmap` instance, the original no sync error went away. So now with the `HEAD` request DVID is saying not...

So this is the issue and it's out-of-scope for DVID itself. Tarsupervoxels is working I think but there's no service that monitors mutations in the labelmaps and then generates meshes,...

Not OP but I can give you some data on my Win install that kind of worked though I'll have to wait to see if detected errors are roadblocks. This...

@stuarteberg In looking at the fix, We want status code 200 and no data returned if there's no voxels at a given scale. What should happen if there are no...

OK, it's simpler to just return 200 so wound up doing that.