diff --git a/servicio-usuarios/src/users/users.service.ts b/servicio-usuarios/src/users/users.service.ts index cbe1689a..81f84a40 100644 --- a/servicio-usuarios/src/users/users.service.ts +++ b/servicio-usuarios/src/users/users.service.ts @@ -222,11 +222,9 @@ export class UsersService { const pattern = { cmd: 'findOneCommunity' } const payload = { _id: community_id } - let callback = await this.clientCommunityApp - .send(pattern, payload) - .pipe( - map((response: string) => ({ response })) - ) + let callback = this.clientCommunityApp + .send(pattern, payload) + .pipe( map((response: string) => ({ response }))) const finalValue = await lastValueFrom(callback); const response = finalValue['response']; const houses = response['houses'];