[Bug 1088540] Re: ec2-bundle-image gives error 'can't convert Fixnum into String'
Scott Moser
smoser at ubuntu.com
Mon Dec 10 16:44:53 UTC 2012
This seems to be a change from ruby 1.8 to 1.9, that caused 'gen_ident' to be valid.
basically, before it had:
##
# generate a unique identifier used for filenames
#
def gen_ident()
(0..19).inject("") {|ident, n| ident+(?A + Kernel.rand(26)).chr}
end
That needs updating to:
(0..19).inject("") {|ident, n| ident+(?A.ord + Kernel.rand(26)).chr}
** Changed in: ec2-ami-tools (Ubuntu)
Importance: Undecided => Medium
** Changed in: ec2-ami-tools (Ubuntu)
Status: New => Triaged
--
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to ec2-ami-tools in Ubuntu.
https://bugs.launchpad.net/bugs/1088540
Title:
ec2-bundle-image gives error 'can't convert Fixnum into String'
To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ec2-ami-tools/+bug/1088540/+subscriptions
More information about the Ubuntu-server-bugs
mailing list