Attempt to fix odd deployment issue

This commit is contained in:
2023-02-21 11:23:09 +00:00
parent a743d18dc9
commit 2871dcd281
3 changed files with 4 additions and 4 deletions

View File

@@ -105,8 +105,7 @@ class Command(BaseCommand):
for i in range(100):
prefix = random.choice(asset_prefixes)
asset_id = str(get_available_asset_id(wanted_prefix=prefix))
asset_id = prefix + asset_id
asset_id = get_available_asset_id(wanted_prefix=prefix)
asset = models.Asset(
asset_id=asset_id,
description=random.choice(asset_description),