Skip to content

Commit ef7619d

Browse files
committed
IDEV-2020: Handle partial response as successful specific for rtuf products only.
1 parent 192232e commit ef7619d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

domaintools/base_results.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ def status(self):
210210

211211
def setStatus(self, code, response=None):
212212
self._status = code
213-
if code == 200 or code == 206:
213+
if code == 200 or (self.product in FEEDS_PRODUCTS_LIST and code == 206):
214214
return
215215

216216
reason = None

0 commit comments

Comments
 (0)