Joseph Ware

Results 33 comments of Joseph Ware

``` ---------------- Broken contracts ---------------- Server cannot import from Client -------------------------------- tiled.server is not allowed to import tiled.client: - tiled.server.app -> tiled.utils (l.43) tiled.utils -> tiled.client.container (l.350) - tiled.server.authentication ->...

I'd propose moving whatever is currently in `tiled.client.container` to either `tiled.container` or `tiled.utils`; move from `tiled.server.schemas` to `tiled.schemas` (schemas should be common(?)), same with `tiled.server.settings` to `tiled.settings`: or at least...

I believe the solution is allowing the Dockerfile to accept args of UID/GID and making a user with those IDs, but I am not sure whether it is required for...

It's definitely the permissions on the /storage directory that are the issue for startup: I've added a emptyDir overriding that directory while I'm still fiddling with temporary database. Would be...

I believe the fix may be adding `$def` as a field to the Schema struct? https://github.com/dadav/helm-schema/blob/eb9f8017306302ce6debe7dcc41ab7a5deac970c/pkg/schema/schema.go#L221 ```go Defs map[string]*Schema `yaml:"$defs,omitempty" json:"$defs,omitempty"` ``` ?

We could just deepcopy then update the copy? ```python D1 = {'a':1, 'b':{'c':3, 'd':4}} D2 = {'b':{'e':5}} D1 = copy.deepcopy(D1) D1.update(**D2) ``` e: ah, I see the issue: the recursvice...

Makes sense, when can we let go of a cached StreamResource: when the detector is unstaged?

Dom is on holiday until at least late January, so my understanding of the MX use case (to have it written down) is to prevent re-arming their detector when running...

Nameless colleague with initials CF had some confusion over the issue, so I made this diagram to make it clearer what the current behaviour is; where each arrow is a...

When does an ophyd (non-async) device emit a (non-Stream) Resource? Just checking if this may also be an issue there- where Resources are tied directly to the StartDocument.