An error occurred (DeploymentLimitExceededException) when calling the CreateDeployment operation: The Deployment Group '*** (id=f7bd9447-cfe6-4ba2-b547-5f36d2bb44cf)' already has an active Deployment 'd-RU4C6DA5O'
CodeDeploy 제한 - AWS CodeDeploy
배포 그룹에 대한 최대 동시 배포 수가 1개로 설정되어 있어 같은 배포 그룹에 배포 요청을 하지 못하는 것으로 보인다.
이전에 요청한 배포가 완료가 된 후에 다시 요청하면 배포 요청이 성공한다.
import { useEffect, useState } from "react";
export const TimeStamp = ({ timestamp } : { timestamp : string}) => {
const [timeAgo, setTimeAgo] = useState('');
};