We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c493fa commit 12c5642Copy full SHA for 12c5642
src/mock_vws/_mock_web_query_api.py
@@ -602,7 +602,10 @@ def query(
602
content_type = 'text/html; charset=ISO-8859-1'
603
context.headers['Content-Type'] = content_type
604
return Path(match_processing_resp_file).read_text()
605
- if target.active_flag and not target.delete_date:
+ if (
606
+ target.active_flag and not target.delete_date
607
+ and target.status == TargetStatuses.SUCCESS.value
608
+ ):
609
matches.add(target)
610
611
results: List[Dict[str, Any]] = []
0 commit comments