Mark Phelps

Results 149 comments of Mark Phelps

@ognif can you try upgrading to either v1.9.1 or v1.10.1 and see if this resolves the issue?

@jalaziz Thanks for the issue. I really like this idea. I'm trying to visualize how this could best be displayed to the user in the UI. One idea is to...

Thanks @AyWa ! Im actually working on improving caching currently as well as introducing Redis support for cache. I'll take this on ~~as part of that work~~ after that work...

@sagikazarmark thanks for the update! I think I'd prefer to add OpenTelemetry as an option for now instead of straight up replacing OpenTracing because of the lack of db/sql support....

> Food for thought: gRPC docs advise the use of `page_token` and `next_page_token`: https://cloud.google.com/apis/design/design_patterns#list_pagination > > Sage advice. Since, this can allow different storage backends to potentially alter the pagination...

> Will it be possible to allow trace configuration? like choosing the exporter, b3 trace etc Hey @anthonycorbacho I'd love to support that. Im trying to figure out how to...

Couldn't you use the [Custom HTTP client functionality](https://github.com/gojek/heimdall#custom-http-clients) like so? ``` type myHTTPClient struct { client http.Client } func (c *myHTTPClient) Do(request *http.Request) (*http.Response, error) { return c.client.Do(request) } proxy...

possible link to https://github.com/kamranahmedse/design-patterns-for-humans ?

This is because the code for the ajax callback does not work with nested routes. My example routes.rb: map.resources :users do |user| user.resource :portfolio do |portfolio| portfolio.resources :images, :member =>...