diff options
Diffstat (limited to 'nova/api')
| -rw-r--r-- | nova/api/openstack/compute/contrib/keypairs.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/nova/api/openstack/compute/contrib/keypairs.py b/nova/api/openstack/compute/contrib/keypairs.py index 7cd919673..67a081c1a 100644 --- a/nova/api/openstack/compute/contrib/keypairs.py +++ b/nova/api/openstack/compute/contrib/keypairs.py @@ -84,6 +84,9 @@ class KeypairController(object): params = body['keypair'] name = params['name'] + if not 0 < len(name) < 256: + msg = _('Keypair name must be between 1 and 255 characters long') + raise webob.exc.HTTPBadRequest(explanation=msg) # NOTE(ja): generation is slow, so shortcut invalid name exception try: db.key_pair_get(context, context.user_id, name) |
