Daniel (dB.) Doubrovkine

Results 3352 comments of Daniel (dB.) Doubrovkine

Yes, please contribute! I believe you can add the spec to https://github.com/opensearch-project/opensearch-api-specification and the client will auto-generate the methods.

Post the code that made the query? What are the versions of the OpenSearch and client? How does one reproduce this

I monkey patch these in my projects. ``` class Team include Mongoid::Document include Mongoid::Timestamps field :whatever, type: String ``` There should be a cleaner way.

I don't think so. Example: https://github.com/dblock/slack-sup/blob/master/slack-sup/models/team.rb Put up a small app and show how it's not working?

@Altonymous Thanks. I'd like this to be documented, but even more I'd like https://github.com/slack-ruby/slack-bot-on-rails to be updated to the latest version of slack-ruby-bot-server and its libraries. Maybe you can help?

I still just monkey-patch the `Team` class, e.g. https://github.com/dblock/slack-sup2/blob/main/lib/models/team.rb, open for someone contributing a better mechanism.

If you want to upgrade https://github.com/slack-ruby/slack-bot-on-rails and try adding it to that I can take a look.

Is this encoding happening incorrectly in the client? Can you encode before calling a client? Want to try to add a test that reproduces this, and maybe a fix?

Thanks, so it's just a bug where those arguments should not be encoded at all? I would write some tests of the expected behavior and fix it.