Skip to content

Commit

Permalink
Fix schema default value for bundledPackageLocation
Browse files Browse the repository at this point in the history
  • Loading branch information
kpollich committed Mar 9, 2022
1 parent dadfe20 commit bd2e6c2
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions x-pack/plugins/fleet/server/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,7 @@ export const config: PluginConfigDescriptor = {
developer: schema.object({
disableRegistryVersionCheck: schema.boolean({ defaultValue: false }),
allowAgentUpgradeSourceUri: schema.boolean({ defaultValue: false }),
bundledPackageLocation: schema.maybe(
schema.string({ defaultValue: DEFAULT_BUNDLED_PACKAGE_LOCATION })
),
bundledPackageLocation: schema.string({ defaultValue: DEFAULT_BUNDLED_PACKAGE_LOCATION }),
}),
}),
};
Expand Down

0 comments on commit bd2e6c2

Please sign in to comment.