You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Although not directly related to the project itself, I'm reporting an attempt to instantiate a usable ObjectStore within a Symfony project and a failure to extends an ObjectStore in this context.
Below service configuration provides a usable openstack_container service:
Now I'd like to avoid the network round-trips of the object-store initialization when I only needs access to some container's metadata (which I can afford to cache).
But that's where I'm getting an issue. GuzzleHttp\ClientInterface and OpenStack\Common\Api\ApiInterface that OpenStack\ObjectStore\v1\Models\Container expects and can't be initialized directly : Symfony factory+DI does not works for my subclass (lazy or not).
How would you suggest to proceed?
The text was updated successfully, but these errors were encountered:
Although not directly related to the project itself, I'm reporting an attempt to instantiate a usable
ObjectStore
within a Symfony project and a failure to extends an ObjectStore in this context.Below service configuration provides a usable
openstack_container
service:Now I'd like to avoid the network round-trips of the object-store initialization when I only needs access to some container's metadata (which I can afford to cache).
I've a subclass extending
Container
:But that's where I'm getting an issue.
GuzzleHttp\ClientInterface
andOpenStack\Common\Api\ApiInterface
thatOpenStack\ObjectStore\v1\Models\Container
expects and can't be initialized directly : Symfony factory+DI does not works for my subclass (lazy
or not).How would you suggest to proceed?
The text was updated successfully, but these errors were encountered: