소켓 연결 관련 질문

현재의 흐름 (소켓 연결 끊김)

sequenceDiagram
    participant Client
    participant Server
    
    Note over Client: 소켓 연결 끊김 감지
    
    Client->>Server: REST GET 요청
    
    alt 200 OK
        Server-->>Client: 데이터 반환
        Note over Client: 웹소켓 재연결
        Note over Client: 화면 리렌더링
    else 거부
        Server-->>Client: 에러 메시지
        Note over Client: 사용자에게 에러 메시지 노출
    end

MSA 관련 질문

Github Action