-
Notifications
You must be signed in to change notification settings - Fork 368
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: async the logic for cloning feature states into a cloned enviro…
…nment (#4005)
- Loading branch information
1 parent
49ff569
commit 02f5f71
Showing
5 changed files
with
126 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Generated by Django 4.2.15 on 2024-10-28 16:18 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("environments", "0035_add_use_identity_overrides_in_local_eval"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="environment", | ||
name="is_creating", | ||
field=models.BooleanField( | ||
default=False, | ||
help_text="Attribute used to indicate when an environment is still being created (via clone for example)", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="historicalenvironment", | ||
name="is_creating", | ||
field=models.BooleanField( | ||
default=False, | ||
help_text="Attribute used to indicate when an environment is still being created (via clone for example)", | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters