Skip to content

Commit

Permalink
fix eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
kaisecheng committed Oct 15, 2020
1 parent 8eb4cc2 commit c4455ba
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion x-pack/plugins/logstash/server/routes/pipelines/list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ export function registerPipelinesListRoute(router: IRouter) {
router.handleLegacyErrors(async (context, request, response) => {
try {
const client = context.logstash!.esClient;
const pipelinesRecord = (await fetchPipelines(client.callAsCurrentUser)) as Record<string, any>;
const pipelinesRecord = (await fetchPipelines(client.callAsCurrentUser)) as Record<
string,
any
>;

const pipelines = Object.keys(pipelinesRecord)
.sort()
Expand Down

0 comments on commit c4455ba

Please sign in to comment.