Actions
Bug #3128
closedEC2 images listing when creating a new host broken in 1.3 RC1
Description
Upgraded to 1.3 RC1 and found that this commit breaks EC2 images listing when creating a new host or editing.
https://github.com/theforeman/foreman/commit/76e5dd41bd575f7e6df7c7422660510216a9b964
Just changed back the following in app/controllers/images_controller.rb and it started working again.
from this:
@images = @compute_resource.images.search_for(params[:search], :order => params[:order]).paginate :page => params[:page]
to this:
respond_to do |format|
format.html { @images = values.paginate :page => params[:page] }
format.json { render :json => values }
end
Updated by Dominic Cleal almost 11 years ago
- Priority changed from Immediate to Urgent
Updated by Greg Sutcliffe almost 11 years ago
- Status changed from New to Ready For Testing
- Assignee set to Greg Sutcliffe
Updated by Dominic Cleal almost 11 years ago
- Has duplicate Bug #3153: Failing to create ec2 VPC instances added
Updated by Greg Sutcliffe almost 11 years ago
- Status changed from Ready For Testing to Closed
- % Done changed from 0 to 100
Applied in changeset 11a8ab90f30fe691bf4a8ea4b2b1b3e770820061.
Updated by Lukas Zapletal almost 11 years ago
- Related to Tracker #3112: [TRACKER] Issues to be released in 1.3 RC or final added
Updated by Lukas Zapletal almost 11 years ago
- Related to deleted (Tracker #3112: [TRACKER] Issues to be released in 1.3 RC or final)
Actions