1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/5f3e2ffbae69/ changeset: 5f3e2ffbae69 user: dannon date: 2012-06-15 20:41:52 summary: Allow null password in Cloud Launch form. Include error response in logging. affected #: 1 file diff -r 4a1389e037c60d83abdcc38ccb30314c4ef4a530 -r 5f3e2ffbae695cd7ae56b2ce4e4c0ed1182e2051 lib/galaxy/web/controllers/cloud.py --- a/lib/galaxy/web/controllers/cloud.py +++ b/lib/galaxy/web/controllers/cloud.py @@ -41,12 +41,14 @@ if ec2_error: return trans.fill_template("cloud/run.mako", error = ec2_error) else: + user_provided_data={'cluster_name':cluster_name, + 'access_key':key_id, + 'secret_key':secret, + 'instance_type':instance_type} + if password: + user_provided_data['password'] = password rs = run_instance(ec2_conn=ec2_conn, - user_provided_data={'cluster_name':cluster_name, - 'password':password, - 'access_key':key_id, - 'secret_key':secret, - 'instance_type':instance_type}, + user_provided_data=user_provided_data, key_name=kp_name, security_groups=[sg_name]) if rs: @@ -187,7 +189,7 @@ ramdisk_id=ramdisk_id, placement=placement) except EC2ResponseError, e: - log.error("Problem starting an instance: %s" % e) + log.error("Problem starting an instance: %s\n%s" % (e, e.body)) if rs: try: log.info("Started an instance with ID %s" % rs.instances[0].id) Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.