mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 15:36:27 +00:00
Create unique identifier in BootstrapInformation
Can be used to uniquely name temporary resources
This commit is contained in:
parent
135ebfbb95
commit
59bae6e497
1 changed files with 3 additions and 1 deletions
|
@ -4,3 +4,5 @@ class BootstrapInformation(object):
|
||||||
def __init__(self, manifest=None, debug=False):
|
def __init__(self, manifest=None, debug=False):
|
||||||
self.manifest = manifest
|
self.manifest = manifest
|
||||||
self.debug = debug
|
self.debug = debug
|
||||||
|
import random
|
||||||
|
self.run_id = random.randrange(16**8)
|
||||||
|
|
Loading…
Add table
Reference in a new issue