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
fixes: confluentinc#4722
This change sees decimals being returned by the rest api avoiding use of scientific notation. For example, a decimal such as `100` will be returned as `100` and not `1e+2`.
The CLI just displays what it given.
At the moment, decimals can be displayed in the CLI using scientific notation, i.e.
10
is rendered as1E+1
. This is confusing some users.Ideally, we could make this configurable at the session level. However, that's more work, and something for a future task.
For now, it should be sufficient to switch the server to no use scientific notation when serializing decimals in HTTP responses.
The text was updated successfully, but these errors were encountered: