Skip to content

Commit

Permalink
rollback unnecessary changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mshustov committed Oct 19, 2021
1 parent 7459342 commit dcf7f74
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ describe('<PolicyEdit />', () => {
schedule,
repository,
config: {
ignore_unavailable: true,
ignoreUnavailable: true,
},
retention: {
...retention,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const nameParameterSchema = schema.object({

const snapshotConfigSchema = schema.object({
indices: schema.maybe(schema.oneOf([schema.string(), schema.arrayOf(schema.string())])),
ignore_unavailable: schema.maybe(schema.boolean()),
ignoreUnavailable: schema.maybe(schema.boolean()),
includeGlobalState: schema.maybe(schema.boolean()),
partial: schema.maybe(schema.boolean()),
metadata: schema.maybe(schema.recordOf(schema.string(), schema.string())),
Expand Down Expand Up @@ -200,6 +200,6 @@ export const restoreSettingsSchema = schema.object({
partial: schema.maybe(schema.boolean()),
indexSettings: schema.maybe(schema.string()),
ignoreIndexSettings: schema.maybe(schema.arrayOf(schema.string())),
ignore_unavailable: schema.maybe(schema.boolean()),
ignoreUnavailable: schema.maybe(schema.boolean()),
includeAliases: schema.maybe(schema.boolean()),
});
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export default function ({ getService }: FtrProviderContext) {
repository: REPO_NAME,
config: {
indices: ['my_index'],
ignore_unavailable: true,
ignoreUnavailable: true,
partial: false,
metadata: {
meta: 'my_meta',
Expand Down Expand Up @@ -140,7 +140,7 @@ export default function ({ getService }: FtrProviderContext) {
repository: REPO_NAME,
config: {
indices: ['my_index'],
ignore_unavailable: true,
ignoreUnavailable: true,
partial: false,
metadata: {
meta: 'my_meta',
Expand Down

0 comments on commit dcf7f74

Please sign in to comment.