Skip to content

Commit b67cbf3

Browse files
committed
I botched something in the history filter code for links. Commenting
out the section of code and returning the history entry so I don't delay other people's development before I can spend some time working on it again.
1 parent 4aa6aa7 commit b67cbf3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

roundup/hyperdb.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1067,6 +1067,7 @@ def history(self, nodeid, enforceperm=True, skipquiet=True):
10671067
# id/object (linkcl, linkid) that is linked/unlinked is not
10681068
# (viewable or editable)
10691069
if len(args) == 3:
1070+
'''
10701071
# e.g. for issue3 blockedby adds link to issue5 with:
10711072
# j = id, evt_date, user, action, args
10721073
# 3|20170528045201.484|5|link|('issue', '5', 'blockedby')
@@ -1100,6 +1101,7 @@ def history(self, nodeid, enforceperm=True, skipquiet=True):
11001101
logger.debug("skipping unaccessible target %s%s for user%s in %s",
11011102
cls.classname, linkid, uid, j_repr)
11021103
continue
1104+
'''
11031105
journal.append(j)
11041106
else:
11051107
logger.error("Invalid %s journal entry for %s%s: %s",

0 commit comments

Comments
 (0)