Skip to content

Commit d577abf

Browse files
committed
Merged in [19238] from jennifer@painless-security.com:
Find AD conflicts using AD person pk instead of role pk. Fixes ietf-tools#3354. - Legacy-Id: 19239 Note: SVN reference [19238] has been migrated to Git commit 73e0120
2 parents 8b72e3c + 73e0120 commit d577abf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/meeting/management/commands/generate_schedule.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,7 @@ def __init__(self, stdout, meeting, session_db, business_constraint_costs, verbo
546546
self.session_pk = session_db.pk
547547
self.group = session_db.group.acronym
548548
self.parent = session_db.group.parent.acronym if session_db.group.parent else None
549-
self.ad = session_db.group.ad_role().pk if session_db.group.ad_role() else None
549+
self.ad = session_db.group.ad_role().person.pk if session_db.group.ad_role() else None
550550
self.is_area_meeting = any([
551551
session_db.group.type_id == 'area',
552552
session_db.group.type_id == 'ag',

0 commit comments

Comments
 (0)