Actions
Bug #11219
closedCannot set OS default template through hammer CLI
Description
This works in 1.8.2 but breaks on 1.9RC2: hammer -u admin -p $PW os set-default-template --id 1 --config-template-id 66
# hammer -d -u admin -p $PW os set-default-template --id 1 --config-template-id 66 [...snipped...[ [ INFO 2015-07-27 06:17:43 API] GET /api/operatingsystems/1/os_default_templates [DEBUG 2015-07-27 06:17:43 API] Params: {} [DEBUG 2015-07-27 06:17:43 API] Headers: { :params => {} } [DEBUG 2015-07-27 06:17:43 API] Response: { "page" => 1, "search" => nil, "per_page" => 20, "results" => [ [0] { "provisioning_template_name" => "Kickstart default PXELinux", "config_template_name" => "Kickstart default PXELinux", "provisioning_template_id" => 23, "config_template_id" => 23, "id" => 4, "template_kind_name" => "PXELinux", "template_kind_id" => 1 }, [1] { "provisioning_template_name" => "blah centos finish", "config_template_name" => "blah centos finish", "provisioning_template_id" => 66, "config_template_id" => 66, "id" => 5, "template_kind_name" => "finish", "template_kind_id" => 5 }, [2] { "provisioning_template_name" => "blah centos kickstart", "config_template_name" => "blah centos kickstart", "provisioning_template_id" => 70, "config_template_id" => 70, "id" => 6, "template_kind_name" => "provision", "template_kind_id" => 4 } ], "sort" => { "order" => nil, "by" => nil }, "subtotal" => 3, "total" => 3 } [DEBUG 2015-07-27 06:17:43 API] Response headers: { :status => "200", :apipie_checksum => "ab2069ff8e136e838e423aee0e7492bc", :etag => "\"309c2b3cfcae1218bb9a66527e0511c9\"", :server => "Apache/2.2.22 (Ubuntu)", :x_rack_cache => "miss", :x_ua_compatible => "IE=Edge,chrome=1", :foreman_version => "1.9.0-RC2", :date => "Mon, 27 Jul 2015 10:17:43 GMT", :x_request_id => "0b6145b790eb056bb633fd40e24aec09", :x_powered_by => "Phusion Passenger (mod_rails/mod_rack) 3.0.21", :content_type => "application/json; charset=utf-8", :set_cookie => [ [0] "_session_id=66853d1917cfa931e3ef0349030b2105; path=/; secure; HttpOnly", [1] "request_method=; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" ], :connection => "close", :foreman_api_version => "2", :content_length => "817", :x_runtime => "0.036547", :cache_control => "must-revalidate, private, max-age=0" } [ INFO 2015-07-27 06:17:43 API] PUT /api/operatingsystems/1/os_default_templates/5 [DEBUG 2015-07-27 06:17:43 API] Params: { "os_default_template" => { "config_template_id" => "66", "template_kind_id" => 5 } } [DEBUG 2015-07-27 06:17:43 API] Headers: {} [DEBUG 2015-07-27 06:17:43 API] 500 Internal Server Error { "error" => { "message" => "unknown attribute: config_template_id" } } [ERROR 2015-07-27 06:17:43 Exception] unknown attribute: config_template_id Could not set the os default template: unknown attribute: config_template_id [ERROR 2015-07-27 06:17:43 Exception] RestClient::InternalServerError (500 Internal Server Error): /usr/lib/ruby/vendor_ruby/restclient/abstract_response.rb:48:in `return!' /usr/lib/ruby/vendor_ruby/restclient/request.rb:230:in `process_result' /usr/lib/ruby/vendor_ruby/restclient/request.rb:178:in `transmit' /usr/lib/ruby/1.8/net/http.rb:543:in `start' /usr/lib/ruby/vendor_ruby/restclient/request.rb:172:in `transmit' /usr/lib/ruby/vendor_ruby/restclient/request.rb:64:in `execute' /usr/lib/ruby/vendor_ruby/restclient/request.rb:33:in `execute' /usr/lib/ruby/vendor_ruby/restclient/resource.rb:80:in `put' /usr/lib/ruby/vendor_ruby/apipie_bindings/api.rb:280:in `send' /usr/lib/ruby/vendor_ruby/apipie_bindings/api.rb:280:in `call_client' /usr/lib/ruby/vendor_ruby/apipie_bindings/api.rb:211:in `http_call' /usr/lib/ruby/vendor_ruby/apipie_bindings/api.rb:162:in `call' /usr/lib/ruby/vendor_ruby/apipie_bindings/resource.rb:14:in `call' /usr/lib/ruby/vendor_ruby/hammer_cli_foreman/operating_system.rb:132:in `update_default_template' /usr/lib/ruby/vendor_ruby/hammer_cli_foreman/operating_system.rb:150:in `execute' /usr/lib/ruby/vendor_ruby/clamp/command.rb:68:in `run' /usr/lib/ruby/vendor_ruby/hammer_cli/./apipie/../abstract.rb:23:in `run' /usr/lib/ruby/vendor_ruby/clamp/subcommand/execution.rb:11:in `execute' /usr/lib/ruby/vendor_ruby/clamp/command.rb:68:in `run' /usr/lib/ruby/vendor_ruby/hammer_cli/./apipie/../abstract.rb:23:in `run' /usr/lib/ruby/vendor_ruby/clamp/subcommand/execution.rb:11:in `execute' /usr/lib/ruby/vendor_ruby/clamp/command.rb:68:in `run' /usr/lib/ruby/vendor_ruby/hammer_cli/./apipie/../abstract.rb:23:in `run' /usr/lib/ruby/vendor_ruby/clamp/command.rb:133:in `run' /usr/bin/hammer:108 from production.log: 2015-07-27T06:37:40 [app] [I] Started PUT "/api/operatingsystems/1/os_default_templates/5" for 10.40.95.86 at 2015-07-27 06:37:40 -0400 2015-07-27T06:37:40 [app] [I] Processing by Api::V2::OsDefaultTemplatesController#update as JSON 2015-07-27T06:37:40 [app] [I] Parameters: {"os_default_template"=>{"config_template_id"=>"66", "template_kind_id"=>5}, "apiv"=>"v2", "operatingsystem_id"=>"1", "id"=>"5"} 2015-07-27T06:37:40 [app] [I] Authorized user admin(Admin User) 2015-07-27T06:37:40 [app] [W] Action failed | ActiveRecord::UnknownAttributeError: unknown attribute: config_template_id | /usr/share/foreman/vendor/ruby/1.9.1/gems/activerecord-3.2.21/lib/active_record/attribute_assignment.rb:88:in `block in assign_attributes' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activerecord-3.2.21/lib/active_record/attribute_assignment.rb:78:in `each' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activerecord-3.2.21/lib/active_record/attribute_assignment.rb:78:in `assign_attributes' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activerecord-3.2.21/lib/active_record/persistence.rb:216:in `block in update_attributes' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activerecord-3.2.21/lib/active_record/transactions.rb:313:in `block in with_transaction_returning_status' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activerecord-3.2.21/lib/active_record/connection_adapters/abstract/database_statements.rb:192:in `transaction' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activerecord-3.2.21/lib/active_record/transactions.rb:208:in `transaction' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activerecord-3.2.21/lib/active_record/transactions.rb:311:in `with_transaction_returning_status' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activerecord-3.2.21/lib/active_record/persistence.rb:215:in `update_attributes' | /usr/share/foreman/app/controllers/api/v2/os_default_templates_controller.rb:52:in `update' | /usr/share/foreman/vendor/ruby/1.9.1/gems/actionpack-3.2.21/lib/action_controller/metal/implicit_render.rb:4:in `send_action' | /usr/share/foreman/vendor/ruby/1.9.1/gems/actionpack-3.2.21/lib/abstract_controller/base.rb:167:in `process_action' | /usr/share/foreman/vendor/ruby/1.9.1/gems/actionpack-3.2.21/lib/action_controller/metal/rendering.rb:10:in `process_action' | /usr/share/foreman/vendor/ruby/1.9.1/gems/actionpack-3.2.21/lib/abstract_controller/callbacks.rb:18:in `block in process_action' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activesupport-3.2.21/lib/active_support/callbacks.rb:595:in `block (5 levels) in _run__2045848196794250010__process_action__2117472120414091792__callbacks' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activesupport-3.2.21/lib/active_support/callbacks.rb:215:in `block in _conditional_callback_around_7945' | /usr/share/foreman/app/controllers/api/v2/base_controller.rb:151:in `disable_json_root' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activesupport-3.2.21/lib/active_support/callbacks.rb:214:in `_conditional_callback_around_7945' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activesupport-3.2.21/lib/active_support/callbacks.rb:550:in `block (4 levels) in _run__2045848196794250010__process_action__2117472120414091792__callbacks' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activesupport-3.2.21/lib/active_support/callbacks.rb:215:in `block in _conditional_callback_around_7944' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activesupport-3.2.21/lib/active_support/callbacks.rb:326:in `around' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activesupport-3.2.21/lib/active_support/callbacks.rb:310:in `_callback_around_3009' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activesupport-3.2.21/lib/active_support/callbacks.rb:214:in `_conditional_callback_around_7944' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activesupport-3.2.21/lib/active_support/callbacks.rb:527:in `block (3 levels) in _run__2045848196794250010__process_action__2117472120414091792__callbacks' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activesupport-3.2.21/lib/active_support/callbacks.rb:215:in `block in _conditional_callback_around_7943' | /usr/share/foreman/app/controllers/concerns/application_shared.rb:13:in `set_timezone' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activesupport-3.2.21/lib/active_support/callbacks.rb:214:in `_conditional_callback_around_7943' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activesupport-3.2.21/lib/active_support/callbacks.rb:526:in `block (2 levels) in _run__2045848196794250010__process_action__2117472120414091792__callbacks' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activesupport-3.2.21/lib/active_support/callbacks.rb:215:in `block in _conditional_callback_around_7942' | /usr/share/foreman/app/models/concerns/foreman/thread_session.rb:32:in `clear_thread' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activesupport-3.2.21/lib/active_support/callbacks.rb:214:in `_conditional_callback_around_7942' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activesupport-3.2.21/lib/active_support/callbacks.rb:448:in `block in _run__2045848196794250010__process_action__2117472120414091792__callbacks' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activesupport-3.2.21/lib/active_support/callbacks.rb:215:in `block in _conditional_callback_around_7941' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activesupport-3.2.21/lib/active_support/callbacks.rb:326:in `around' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activesupport-3.2.21/lib/active_support/callbacks.rb:310:in `_callback_around_13' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activesupport-3.2.21/lib/active_support/callbacks.rb:214:in `_conditional_callback_around_7941' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activesupport-3.2.21/lib/active_support/callbacks.rb:414:in `_run__2045848196794250010__process_action__2117472120414091792__callbacks' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activesupport-3.2.21/lib/active_support/callbacks.rb:405:in `__run_callback' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activesupport-3.2.21/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activesupport-3.2.21/lib/active_support/callbacks.rb:81:in `run_callbacks' | /usr/share/foreman/vendor/ruby/1.9.1/gems/actionpack-3.2.21/lib/abstract_controller/callbacks.rb:17:in `process_action' | /usr/share/foreman/vendor/ruby/1.9.1/gems/actionpack-3.2.21/lib/action_controller/metal/rescue.rb:29:in `process_action' | /usr/share/foreman/vendor/ruby/1.9.1/gems/actionpack-3.2.21/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activesupport-3.2.21/lib/active_support/notifications.rb:123:in `block in instrument' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activesupport-3.2.21/lib/active_support/notifications/instrumenter.rb:20:in `instrument' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activesupport-3.2.21/lib/active_support/notifications.rb:123:in `instrument' | /usr/share/foreman/vendor/ruby/1.9.1/gems/actionpack-3.2.21/lib/action_controller/metal/instrumentation.rb:29:in `process_action' | /usr/share/foreman/vendor/ruby/1.9.1/gems/actionpack-3.2.21/lib/action_controller/metal/params_wrapper.rb:207:in `process_action' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activerecord-3.2.21/lib/active_record/railties/controller_runtime.rb:18:in `process_action' | /usr/share/foreman/vendor/ruby/1.9.1/gems/actionpack-3.2.21/lib/abstract_controller/base.rb:121:in `process' | /usr/share/foreman/vendor/ruby/1.9.1/gems/actionpack-3.2.21/lib/abstract_controller/rendering.rb:45:in `process' | /usr/share/foreman/vendor/ruby/1.9.1/gems/actionpack-3.2.21/lib/action_controller/metal.rb:203:in `dispatch' | /usr/share/foreman/vendor/ruby/1.9.1/gems/actionpack-3.2.21/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' | /usr/share/foreman/vendor/ruby/1.9.1/gems/actionpack-3.2.21/lib/action_controller/metal.rb:246:in `block in action' | /usr/share/foreman/vendor/ruby/1.9.1/gems/actionpack-3.2.21/lib/action_dispatch/routing/route_set.rb:73:in `call' | /usr/share/foreman/vendor/ruby/1.9.1/gems/actionpack-3.2.21/lib/action_dispatch/routing/route_set.rb:73:in `dispatch' | /usr/share/foreman/vendor/ruby/1.9.1/gems/actionpack-3.2.21/lib/action_dispatch/routing/route_set.rb:36:in `call' | /usr/share/foreman/vendor/ruby/1.9.1/gems/actionpack-3.2.21/lib/action_dispatch/routing/mapper.rb:43:in `call' | /usr/share/foreman/vendor/ruby/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:68:in `block in call' | /usr/share/foreman/vendor/ruby/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:56:in `each' | /usr/share/foreman/vendor/ruby/1.9.1/gems/journey-1.0.4/lib/journey/router.rb:56:in `call' | /usr/share/foreman/vendor/ruby/1.9.1/gems/actionpack-3.2.21/lib/action_dispatch/routing/route_set.rb:608:in `call' | /usr/share/foreman/vendor/ruby/1.9.1/gems/apipie-rails-0.2.6/lib/apipie/static_dispatcher.rb:65:in `call' | /usr/share/foreman/vendor/ruby/1.9.1/gems/apipie-rails-0.2.6/lib/apipie/extractor/recorder.rb:97:in `call' | /usr/share/foreman/vendor/ruby/1.9.1/gems/apipie-rails-0.2.6/lib/apipie/middleware/checksum_in_headers.rb:27:in `call' | /usr/share/foreman/vendor/ruby/1.9.1/gems/actionpack-3.2.21/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' | /usr/share/foreman/vendor/ruby/1.9.1/gems/rack-1.4.7/lib/rack/etag.rb:23:in `call' | /usr/share/foreman/vendor/ruby/1.9.1/gems/rack-1.4.7/lib/rack/conditionalget.rb:35:in `call' | /usr/share/foreman/vendor/ruby/1.9.1/gems/actionpack-3.2.21/lib/action_dispatch/middleware/head.rb:14:in `call' | /usr/share/foreman/vendor/ruby/1.9.1/gems/actionpack-3.2.21/lib/action_dispatch/middleware/params_parser.rb:21:in `call' | /usr/share/foreman/lib/middleware/catch_json_parse_errors.rb:9:in `call' | /usr/share/foreman/vendor/ruby/1.9.1/gems/actionpack-3.2.21/lib/action_dispatch/middleware/flash.rb:242:in `call' | /usr/share/foreman/vendor/ruby/1.9.1/gems/rack-1.4.7/lib/rack/session/abstract/id.rb:210:in `context' | /usr/share/foreman/vendor/ruby/1.9.1/gems/rack-1.4.7/lib/rack/session/abstract/id.rb:205:in `call' | /usr/share/foreman/vendor/ruby/1.9.1/gems/actionpack-3.2.21/lib/action_dispatch/middleware/cookies.rb:341:in `call' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activerecord-3.2.21/lib/active_record/query_cache.rb:64:in `call' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activerecord-3.2.21/lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' | /usr/share/foreman/vendor/ruby/1.9.1/gems/actionpack-3.2.21/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activesupport-3.2.21/lib/active_support/callbacks.rb:405:in `_run__764033954099234460__call__989146125812595400__callbacks' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activesupport-3.2.21/lib/active_support/callbacks.rb:405:in `__run_callback' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activesupport-3.2.21/lib/active_support/callbacks.rb:385:in `_run_call_callbacks' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activesupport-3.2.21/lib/active_support/callbacks.rb:81:in `run_callbacks' | /usr/share/foreman/vendor/ruby/1.9.1/gems/actionpack-3.2.21/lib/action_dispatch/middleware/callbacks.rb:27:in `call' | /usr/share/foreman/vendor/ruby/1.9.1/gems/actionpack-3.2.21/lib/action_dispatch/middleware/remote_ip.rb:31:in `call' | /usr/share/foreman/vendor/ruby/1.9.1/gems/actionpack-3.2.21/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' | /usr/share/foreman/vendor/ruby/1.9.1/gems/actionpack-3.2.21/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' | /usr/share/foreman/vendor/ruby/1.9.1/gems/railties-3.2.21/lib/rails/rack/logger.rb:32:in `call_app' | /usr/share/foreman/vendor/ruby/1.9.1/gems/railties-3.2.21/lib/rails/rack/logger.rb:18:in `call' | /usr/share/foreman/vendor/ruby/1.9.1/gems/actionpack-3.2.21/lib/action_dispatch/middleware/request_id.rb:22:in `call' | /usr/share/foreman/vendor/ruby/1.9.1/gems/rack-1.4.7/lib/rack/methodoverride.rb:21:in `call' | /usr/share/foreman/vendor/ruby/1.9.1/gems/rack-1.4.7/lib/rack/runtime.rb:17:in `call' | /usr/share/foreman/vendor/ruby/1.9.1/gems/activesupport-3.2.21/lib/active_support/cache/strategy/local_cache.rb:72:in `call' | /usr/share/foreman/vendor/ruby/1.9.1/gems/rack-1.4.7/lib/rack/lock.rb:15:in `call' | /usr/share/foreman/vendor/ruby/1.9.1/gems/actionpack-3.2.21/lib/action_dispatch/middleware/static.rb:83:in `call' | /usr/share/foreman/vendor/ruby/1.9.1/gems/rack-cache-1.2/lib/rack/cache/context.rb:136:in `forward' | /usr/share/foreman/vendor/ruby/1.9.1/gems/rack-cache-1.2/lib/rack/cache/context.rb:143:in `pass' | /usr/share/foreman/vendor/ruby/1.9.1/gems/rack-cache-1.2/lib/rack/cache/context.rb:155:in `invalidate' | /usr/share/foreman/vendor/ruby/1.9.1/gems/rack-cache-1.2/lib/rack/cache/context.rb:71:in `call!' | /usr/share/foreman/vendor/ruby/1.9.1/gems/rack-cache-1.2/lib/rack/cache/context.rb:51:in `call' | /usr/share/foreman/vendor/ruby/1.9.1/gems/railties-3.2.21/lib/rails/engine.rb:484:in `call' | /usr/share/foreman/vendor/ruby/1.9.1/gems/railties-3.2.21/lib/rails/application.rb:231:in `call' | /usr/share/foreman/vendor/ruby/1.9.1/gems/railties-3.2.21/lib/rails/railtie/configurable.rb:30:in `method_missing' | /usr/share/foreman/vendor/ruby/1.9.1/gems/rack-1.4.7/lib/rack/builder.rb:134:in `call' | /usr/share/foreman/vendor/ruby/1.9.1/gems/rack-1.4.7/lib/rack/urlmap.rb:64:in `block in call' | /usr/share/foreman/vendor/ruby/1.9.1/gems/rack-1.4.7/lib/rack/urlmap.rb:49:in `each' | /usr/share/foreman/vendor/ruby/1.9.1/gems/rack-1.4.7/lib/rack/urlmap.rb:49:in `call' | /usr/lib/ruby/1.9.1/phusion_passenger/rack/request_handler.rb:97:in `process_request' | /usr/lib/ruby/1.9.1/phusion_passenger/abstract_request_handler.rb:520:in `accept_and_process_next_request' | /usr/lib/ruby/1.9.1/phusion_passenger/abstract_request_handler.rb:274:in `main_loop' | /usr/lib/ruby/1.9.1/phusion_passenger/rack/application_spawner.rb:206:in `start_request_handler' | /usr/lib/ruby/1.9.1/phusion_passenger/rack/application_spawner.rb:171:in `block in handle_spawn_application' | /usr/lib/ruby/1.9.1/phusion_passenger/utils.rb:470:in `safe_fork' | /usr/lib/ruby/1.9.1/phusion_passenger/rack/application_spawner.rb:166:in `handle_spawn_application' | /usr/lib/ruby/1.9.1/phusion_passenger/abstract_server.rb:357:in `server_main_loop' | /usr/lib/ruby/1.9.1/phusion_passenger/abstract_server.rb:206:in `start_synchronously' | /usr/lib/ruby/1.9.1/phusion_passenger/abstract_server.rb:180:in `start' | /usr/lib/ruby/1.9.1/phusion_passenger/rack/application_spawner.rb:129:in `start' | /usr/lib/ruby/1.9.1/phusion_passenger/spawn_manager.rb:253:in `block (2 levels) in spawn_rack_application' | /usr/lib/ruby/1.9.1/phusion_passenger/abstract_server_collection.rb:132:in `lookup_or_add' | /usr/lib/ruby/1.9.1/phusion_passenger/spawn_manager.rb:246:in `block in spawn_rack_application' | /usr/lib/ruby/1.9.1/phusion_passenger/abstract_server_collection.rb:82:in `block in synchronize' | <internal:prelude>:10:in `synchronize' | /usr/lib/ruby/1.9.1/phusion_passenger/abstract_server_collection.rb:79:in `synchronize' | /usr/lib/ruby/1.9.1/phusion_passenger/spawn_manager.rb:244:in `spawn_rack_application' | /usr/lib/ruby/1.9.1/phusion_passenger/spawn_manager.rb:137:in `spawn_application' | /usr/lib/ruby/1.9.1/phusion_passenger/spawn_manager.rb:275:in `handle_spawn_application' | /usr/lib/ruby/1.9.1/phusion_passenger/abstract_server.rb:357:in `server_main_loop' | /usr/lib/ruby/1.9.1/phusion_passenger/abstract_server.rb:206:in `start_synchronously' | /usr/share/phusion-passenger/helper-scripts/passenger-spawn-server:99:in `<main>'
Updated by Dominic Cleal over 9 years ago
- Project changed from Hammer CLI to Foreman
- Category set to API
- Translation missing: en.field_release set to 35
Updated by Dominic Cleal over 9 years ago
- Related to Feature #7096: Partition Tables should just be a kind of Provisioning Templates added
Updated by Martin Bacovsky over 9 years ago
- Status changed from New to Assigned
- Assignee set to Martin Bacovsky
Updated by The Foreman Bot over 9 years ago
- Status changed from Assigned to Ready For Testing
- Pull request https://github.com/theforeman/foreman/pull/2581 added
- Pull request deleted (
)
Updated by Alexandre Barth over 9 years ago
It is working as expected after applying this commit.
Updated by Martin Bacovsky over 9 years ago
- Status changed from Ready For Testing to Closed
- % Done changed from 0 to 100
Applied in changeset 3a4b4001c1defc5a1dd5210d106e281e4f3484ab.
Actions