Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
TinaHeiligers committed Sep 30, 2024
1 parent d9b3ea9 commit b42530a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -206,10 +206,7 @@ const configSchema = schema.object(
}
),
// disable access to internal routes by default
restrictInternalApis: offeringBasedSchema({
serverless: schema.boolean({ defaultValue: true }),
traditional: schema.boolean({ defaultValue: true }),
}),
restrictInternalApis: schema.boolean({ defaultValue: true }),

versioned: schema.object({
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -237,13 +237,6 @@ describe('ES-index-backed file client', () => {
name: 'cool name 1',
})
);

// await esClient.indices.refresh({ index: blobStorageIndex });

// await Promise.all([
// deleteFile({ id: id1, hasContent: false, refreshIndex: false }),
// deleteFile({ id: id2, hasContent: false, refreshIndex: false }),
// ]);
await deleteFile({ id: id1, hasContent: false, refreshIndex: true });
await deleteFile({ id: id2, hasContent: false, refreshIndex: true });
});
Expand Down

0 comments on commit b42530a

Please sign in to comment.