Skip to content

Commit

Permalink
[deprecations/test plugin]: Check in all spaces (#202356)
Browse files Browse the repository at this point in the history
  • Loading branch information
afharo authored Dec 2, 2024
1 parent 783a97c commit 97dab10
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ async function getDeprecations({
savedObjectsClient,
}: GetDeprecationsContext): Promise<DeprecationsDetails[]> {
const deprecations: DeprecationsDetails[] = [];
const { total } = await savedObjectsClient.find({ type: 'test-deprecations-plugin', perPage: 1 });
const { total } = await savedObjectsClient.find({
type: 'test-deprecations-plugin',
perPage: 1,
namespaces: ['*'],
});

deprecations.push({
title: 'CorePluginDeprecationsPlugin plugin is deprecated',
Expand Down

0 comments on commit 97dab10

Please sign in to comment.