File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed
src/aap_eda/api/serializers Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -573,6 +573,7 @@ def copy(self) -> dict:
573
573
"rulebook_rulesets" : activation .rulebook_rulesets ,
574
574
"git_hash" : activation .rulebook .project .git_hash ,
575
575
"project" : activation .rulebook .project ,
576
+ "log_tracking_id" : str (uuid .uuid4 ()),
576
577
}
577
578
if activation .eda_system_vault_credential :
578
579
inputs = yaml .safe_load (
Original file line number Diff line number Diff line change @@ -1260,6 +1260,7 @@ def test_copy_activation(
1260
1260
activation = models .Activation .objects .filter (id = data ["id" ]).first ()
1261
1261
assert activation .name == "another_name"
1262
1262
assert activation .is_enabled is False
1263
+ assert activation .log_tracking_id is not None
1263
1264
1264
1265
1265
1266
@pytest .mark .django_db
You can’t perform that action at this time.
0 commit comments