Skip to content

Commit

Permalink
Does restoring await fix CI?
Browse files Browse the repository at this point in the history
  • Loading branch information
John Schulz committed Jun 15, 2020
1 parent f558eb8 commit d9c0339
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x-pack/plugins/ingest_manager/server/services/output.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ let cachedAdminUser: null | { username: string; password: string } = null;

class OutputService {
public async getDefaultOutput(soClient: SavedObjectsClientContract) {
return soClient.find<Output>({
return await soClient.find<Output>({
type: OUTPUT_SAVED_OBJECT_TYPE,
searchFields: ['is_default'],
search: 'true',
Expand Down

0 comments on commit d9c0339

Please sign in to comment.