osmosis: all those apis with pagination parameters return 429? only on Osmosis.

We don’t have access limit https://osmo.api.ping.pub/cosmos/slashing/v1beta1/signing_infos?pagination.limit=5 https://lcd-osmosis.blockapsis.com/cosmos/gov/v1beta1/proposals?pagination.limit=5&pagination.reverse=true&pagination.key=

Both return this error.

{
  "code": 8,
  "message": "trying to send message larger than max (6 vs. 0)",
  "details": [
  ]
}

About this issue

  • Original URL
  • State: closed
  • Created 2 years ago
  • Comments: 15 (11 by maintainers)

Most upvoted comments

So whats happening if these configs aren’t sent? Is the default assumed to be 0 at the moment, or something more reasonable?

Can we make a PR that makes an unset value the recommended default instead?

EDIT: This is fixed by Bez PR here: https://github.com/osmosis-labs/cosmos-sdk/pull/220/files

@p0mvn tried in [rpc] and [api] , but not works

[grpc]

# Enable defines if the gRPC server should be enabled.
enable = true

# Address defines the gRPC server address to bind to.
address = "0.0.0.0:9090"

max-recv-msg-size = "10485760"

max-send-msg-size = "2147483647"