Page MenuHomeSoftware Heritage

Storing associated bugs
Closed, MigratedEdits Locked

Description

Bzr allows users to flag revisions with related bugs. Any revision can have multiple associated bugs, represented by (url, status).

Event Timeline

Alphare triaged this task as Normal priority.Jan 25 2022, 2:16 PM
Alphare created this task.
Alphare created this object in space S1 Public.

extra_headers looks like the best way to do this.

It seems like the expected type of Tuple[Tuple[bytes, bytes], ...] does not offer any nesting opportunities. Should we have an ad-hoc coding of sorts? Am I just missing something?

Should we have an ad-hoc coding of sorts?

Yes, probably Something like: ((b"bug", b"status1 url1"), (b"bug", b"status2 url2"), ...), assuming statuses cannot contain spaces

Is this information fully intrinsic, or can it be modified without the revision id changing ?