Error 6

[Error]React - DOMException: Failed to execute 'removeChild' on 'Node': The node to be removed is not a child of this node.

React를 프로젝트를 진행하며 페이지 이동시 아래 에러 발생 DOMException: Failed to execute 'removeChild' on 'Node': The node to be removed is not a child of this node. 에러 발생 소스 ex) {data &&()} 에러 발생 원인 조건부 랜더링시 react에서 ins태그를 node로 인식하지 못함 해결 방법 react에서 node로 인식 할 수 있는 태그로 감싸줌 ex) {data &&()}

Error 2024.01.18

[Error] "trace": "feign.RetryableException: Host is down (connect failed) executing GET

"trace": "feign.RetryableException: Host is down (connect failed) executing GET ... 발생 원인 Feign 클라이언트에서 요청을 보내는 동안에 호스트에 연결할 수 없어서 발생하는에러 호스트가 다운되었거나 네트워크 연결 상태가 불완정할때 발생한다. 해결 방법 호스트 서버를 재 실행하거나, 연결 상태를 확인한다. 호스트 서버 문제가 발생해도 에러를 대신할 데이터를 전달해 준다. (CricuitBreaker) CircuitBreak : 장애가 발생하는 서비스에 반복적인 호출이 되지 못하게 차단 다른 서비스로 대체 수행

Error 2023.05.12