Actions
Bug #21013
closedAPI params of type Integer are not converted properly
Difficulty:
Triaged:
Pull request:
Team Backlog:
Description
In the API doc the apipie-rails indicates that the parameter is numeric with attributes validator: 'Number' or 'Integer' and expected_type: 'numeric'.
In hammer core we test:
elsif param.expected_type.to_s == 'number' || param.validator =~ /Number/i
see: https://github.com/theforeman/hammer-cli/blob/master/lib/hammer_cli/apipie/option_builder.rb#L74
To reproduce you can watch the debug output for
hammer -d host update --id 1 --content-source-id 1
For this particular reproducer Katello is needed but the the issue is present for any Integer (type Number works, make sure it is not searchable id). content-source-id is defined as an Integer in the API and is not searchable.
[DEBUG 2017-09-19 11:56:33 API] Params: { "host" => { "compute_attributes" => { "volumes_attributes" => {} }, "content_facet_attributes" => { "content_source_id" => "1" }, "subscription_facet_attributes" => {}, "host_parameters_attributes" => [], "interfaces_attributes" => [] } }
Updated by The Foreman Bot over 7 years ago
- Status changed from New to Ready For Testing
- Pull request https://github.com/theforeman/hammer-cli/pull/252 added
Updated by Martin Bacovsky over 7 years ago
- Status changed from Ready For Testing to Closed
- % Done changed from 0 to 100
Applied in changeset 62529bb8b918e0bae6cda7592c1a9c0afce6e8b4.
Updated by The Foreman Bot over 7 years ago
- Pull request https://github.com/theforeman/hammer-cli-foreman/pull/333 added
Actions