Tin Rabzelj
Tin Rabzelj
Is anyone working on this? I want this theme on Ubuntu 17.04.
The best way would be to have a separate service and include its definitions in each service that needs to authenticate requests. In a world of microservices, you could create...
Most of the code would be under `internal` directory. `app/` for specific use cases and `pkg/` for cross-cutting packages. You could use [wire](https://github.com/google/wire) for constructing services with many dependencies.
Yes, all this can happen. It could be resolved with a [saga](http://microservices.io/patterns/data/saga.html). I have a possible implementation on my To-Do list :smile_cat:
@gedw99 Yes, if you can guarantee that events will be delivered at least once. If the event gets properly handled on the query side, then the delivery can be considered...
Fixed in latest master. Upgraded to Go modules and updated dependencies.
I wasn't thinking about other TF models when I built this, because of the way tensors are set up from images. But if you're getting "empty reply from server", an...
There was a problem with gRPC. I fixed it in [https://github.com/tinrab/graphql-realtime-chat/commit/9652891e451179742fd0da85cf5cd2db52bd7443](https://github.com/tinrab/graphql-realtime-chat/commit/9652891e451179742fd0da85cf5cd2db52bd7443).
Use an account client. https://github.com/tinrab/spidey/blob/72ed153260af51491d7749ba09559f5e9c8c550c/order/server.go#L25 You could pass it to order service and execute RPC there.
1. Not in this repo. But it would only require appropriate Dockerfile for whatever tech you'd want to use. 2. Yes, that would be better. Or having separate repos for...