TIL( Today I Learned)
21-07-12 월
-
프로젝트
- Jandi noti 달기
- 코드리뷰
21-07-13 화
-
Django 쿼리 필터링 확인
- filter 중첩로 해결
- N query 해결
-
git commit 위치로 checkout 하고, add 하고, commit —amend 로 동작 가능?? // 안된다.
- 4ccfc778 => ea563ea2
- commit —amend ???
- commit hash 변경이 된다.
21-07-14 수
- 배포 준비 점검
- 배포
21-07-15 목
- Query 문 고치기!!
- Hotfix
21-07-16 금
- 핫픽스 수정
TEL (Trial and Error Log)
21-07-13
-
ERROR:‘ConnectionError’ object has no attribute ‘translate’
- SITUATION: python raise ConnectionError and insert into DB
- REASON: insert Error Instance Directly to DB
-
SOLUTION:
- parse to str
- `
repr(e) <= e `
-
ERROR: can’t compare offset-naive and offset-aware datetimes
- SITUATION: datetime 값 비교중
- REASON: 기본 datetime 객체는 timezone 값이 없다. 그에 반에 내가 비교하려던 datetime 객체는 tz 값이 들어가면서 비교하지 못함
-
SOLUTION:
- datetime.now(timezone.utc)