Skip to content

Commit

Permalink
remove tags from resolver route.
Browse files Browse the repository at this point in the history
  • Loading branch information
oatkiller committed Dec 6, 2019
1 parent 72a38af commit bdd633d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
3 changes: 0 additions & 3 deletions x-pack/plugins/endpoint/server/routes/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ export function addRoutes(router: IRouter) {
{
path: '/api/endpoint/hello-world',
validate: false,
options: {
tags: ['access:resolver'],
},
},
async function greetingIndex(_context, _request, response) {
return response.ok({
Expand Down
6 changes: 2 additions & 4 deletions x-pack/test/api_integration/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@
import { services } from './services';

export async function getApiIntegrationConfig({ readConfigFile }) {
const xPackFunctionalTestsConfig = await readConfigFile(
require.resolve('../functional/config.js')
);
const xPackFunctionalTestsConfig = await readConfigFile(require.resolve('../functional/config.js'));

return {
testFiles: [require.resolve('./apis')],
Expand All @@ -32,7 +30,7 @@ export async function getApiIntegrationConfig({ readConfigFile }) {
...xPackFunctionalTestsConfig.get('esTestCluster'),
serverArgs: [
...xPackFunctionalTestsConfig.get('esTestCluster.serverArgs'),
'node.attr.name=apiIntegrationTestNode',
'node.attr.name=apiIntegrationTestNode'
],
},
};
Expand Down

0 comments on commit bdd633d

Please sign in to comment.