Skip to content
Snippets Groups Projects
Unverified Commit 135858d8 authored by IKEDA Sho's avatar IKEDA Sho Committed by GitHub
Browse files

fix(datasource/cpan): add `module.authorized` condition for querying releases (#22445)

parent 2f23c146
No related branches found
No related tags found
No related merge requests found
...@@ -43,6 +43,7 @@ export class CpanDatasource extends Datasource { ...@@ -43,6 +43,7 @@ export class CpanDatasource extends Datasource {
filter: { filter: {
and: [ and: [
{ term: { 'module.name': packageName } }, { term: { 'module.name': packageName } },
{ term: { 'module.authorized': true } },
{ exists: { field: 'module.associated_pod' } }, { exists: { field: 'module.associated_pod' } },
], ],
}, },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment