Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
noc
noc
Commits
44e4b65f
Commit
44e4b65f
authored
Sep 22, 2022
by
Andrey Vertiprahov
Browse files
Fix ReportPendingLink when empty DiscoveryID collection.
parent
9c3cc2cf
Pipeline
#37643
passed with stages
in 16 minutes and 42 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
services/web/apps/inv/reportpendinglinks/views.py
View file @
44e4b65f
...
...
@@ -65,8 +65,10 @@ class ReportPendingLinks(object):
],
allowDiskUse
=
True
,
)
find
=
next
(
find
)
duplicate_macs
=
set
(
find
[
"mos"
])
duplicate_macs
=
set
()
find
=
next
(
find
,
None
)
if
find
:
duplicate_macs
=
set
(
find
[
"mos"
])
while
mos_job
[(
0
+
n
)
:
(
10000
+
n
)]:
job_logs
=
(
get_db
()[
"noc.joblog"
]
...
...
Andrey Vertiprahov
@aversant
mentioned in commit
f8eb0488
·
Sep 22, 2022
mentioned in commit
f8eb0488
mentioned in commit f8eb0488ee05ce6fdddd6e62e7e1a8505353b044
Toggle commit list
Andrey Vertiprahov
@aversant
mentioned in merge request
!6679 (merged)
·
Sep 22, 2022
mentioned in merge request
!6679 (merged)
mentioned in merge request !6679
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment