Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
nchaulet committed Oct 5, 2022
1 parent b5347f2 commit 4059f0d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion x-pack/plugins/fleet/common/openapi/entrypoint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ paths:
/fleet_server_hosts:
$ref: paths/fleet_server_hosts.yaml
/fleet_server_hosts/{itemId}:
$ref: paths/fleet_server_hosts@{itemId}.yaml
$ref: paths/fleet_server_hosts@{item_id}.yaml
components:
securitySchemes:
basicAuth:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,7 @@ export async function createOrUpdatePreconfiguredFleetServerHosts(
existingHost.is_default !== preconfiguredFleetServerHost.is_default ||
existingHost.name !== preconfiguredFleetServerHost.name ||
!isEqual(existingHost?.host_urls, preconfiguredFleetServerHost.host_urls));
console.log('isCreate', isCreate);
console.log('isUpdateWithNewData', isUpdateWithNewData);

if (isCreate) {
await createFleetServerHost(
soClient,
Expand Down

0 comments on commit 4059f0d

Please sign in to comment.