VPNaaS datamodel IKEPolicy lifetime unit typo

There was a typo in handling the IKEPolicy
lifetime, during the IKEPolicy creation time.

-Fixed the typo issue

Fixes bug 1207572

Change-Id: If8c56619c9a340a04e336b6b83d219df10b91e6c
This commit is contained in:
Swaminathan Vasudevan 2013-08-02 06:57:04 -07:00
parent bee0e6f0a3
commit 0218813475
1 changed files with 1 additions and 1 deletions

View File

@ -358,7 +358,7 @@ class VPNPluginDb(VPNPluginBase, base_db.CommonDbMixin):
ike = ikepolicy['ikepolicy']
tenant_id = self._get_tenant_id_for_create(context, ike)
lifetime_info = ike.get('lifetime', [])
lifetime_units = lifetime_info.get('unit', 'seconds')
lifetime_units = lifetime_info.get('units', 'seconds')
lifetime_value = lifetime_info.get('value', 3600)
with context.session.begin(subtransactions=True):