Skip to content

Commit 5a0cd23

Browse files
gethviaaronkaplan
authored andcommitted
FIX: Do not overwrite feed.documentation if present.
1 parent 7d2012d commit 5a0cd23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

intelmq/bots/parsers/shadowserver/parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def parse_line(self, row, report):
120120
event.add('feed.name', self.feedname, overwrite=self.overwrite)
121121

122122
# set feed.documentation to a report url
123-
event.add('feed.documentation', conf.get('url'))
123+
event.add('feed.documentation', conf.get('url'), overwrite=False)
124124

125125
extra = {} # The Json-Object which will be populated with the
126126
# fields that could not be added to the standard intelmq fields

0 commit comments

Comments
 (0)