Replace uuid4() with generate_uuid() from oslo_utils

As of now, UUID is being generated using either uuid.uuid4()
or uuidutils.generate_uuid(). In order to maintain consistency,
we propose to use uuidutils.generate_uuid() from oslo_utils.

Change-Id: I620cb1f396ce011b9846ff2dad2c9811bc5d0652
Closes-Bug: #1082248
This commit is contained in:
pawnesh.kumar 2016-11-07 15:33:28 +05:30 committed by pawnesh kumar
parent 943e01bb1e
commit 134c64a8b1
1 changed files with 3 additions and 2 deletions

View File

@ -13,9 +13,9 @@
# limitations under the License.
import base64
from urlparse import urlparse
import uuid
from oslo_serialization import jsonutils
from oslo_utils import uuidutils
from tempest import test
from mistral_tempest_tests.tests import base
@ -106,7 +106,8 @@ def _execute_action(client, request, extra_headers={}):
def _get_create_stack_request():
stack_name = 'multi_vim_test_stack_{}'.format(str(uuid.uuid4())[:8])
stack_name = 'multi_vim_test_stack_{}'.format(
uuidutils.generate_uuid()[:8])
return {
'name': 'heat.stacks_create',