-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug/#250 stock data 문제 해결 #256
Merged
Merged
Changes from all commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
ef1e803
Dev be (#185)
swkim12345 41a4115
Feature/#99 - 참여한 채팅방에서 이전 기록을 확인할 수 있다. (#190)
xjfcnfw3 8fe29ef
✨ feat: token entity 추가
swkim12345 903264e
✨ feat: entity 에 저장, expire 검사 로직 추가
swkim12345 e4429e5
🐛 fix: token 주입으로 로직 변경
swkim12345 3a81ad0
♻️ refactor: token 주입으로 변경, 그로 인한 오류 수정 및 console.log 삭제
swkim12345 57f1d5a
🐛 fix: live 데이터 수집 오류 해결, 데이터 없을 때 insert 오류 해결
swkim12345 1de39b4
🐛 fix: stock, livedata entity 수정
swkim12345 bb71125
♻️ refactor: develop 환경시 logging 활성화
swkim12345 e7e6724
📦️ ci: production 환경일 때 작동되게 변경
swkim12345 8f43995
♻️ refactor: websocket 모듈에서 liveData로 서비스 로직 분리
swkim12345 6bcb5c5
♻️ refactor: livedata stock module로 이동
swkim12345 93df868
♻️ refactor: dev-be와 merge
swkim12345 77e4105
✨ feat: 장 마감시 openapi로 부르는 로직 추가
swkim12345 fe29d50
🐛 fix: websocket logger 추가, client stock 저장되지 않는 오류 해결
swkim12345 007e2e5
🐛 fix: openapi는 저장이 필요 없음 롤 백
swkim12345 2a66928
💄 style: merging dev-be
swkim12345 ff9ad02
🐛 fix: open api로 데이터 받지 못하는 문제 해결
swkim12345 ddccc0a
💄 style: 안 쓰이는 것 빼기
swkim12345 df5b6e6
💄 style: console.log 삭제
swkim12345 79a34b6
🐛 fix: pk가 아닌 곳에 unique 키 추가
swkim12345 a751756
💄 style: 불필요한 logger 삭제
swkim12345 cacfefd
Merge branch 'feature/#240' into bug/#250
swkim12345 ea8d57e
♻️ refactor: error, disconnect function 분리
swkim12345 2692830
♻️ refactor: stock data에 indexing, unique 거릭
swkim12345 df7d087
🐛 fix: 타입 가드 빠진 부분을 추가하고, detail이
swkim12345 0d3f4c4
🐛 fix: 유량 제어 제거, try-catch로 다시 시작 추가
swkim12345 390a8b3
♻️ refactor: cron 추가
swkim12345 4682c57
🐛 fix: cron
swkim12345 39db490
♻️ refactor: period data 수정
swkim12345 315db7c
♻️ refactor: console.log 삭제
swkim12345 04b68c1
♻️ refactor: dev-be 머지
swkim12345 1429a8a
🐛 fix: token의 expired 먼저 확인하고 db 접근으로 변경
swkim12345 1f8f82e
🐛 fix: settimeout 시간 조정
swkim12345 44e54fb
♻️ refactor: 확인용 getItemchartprice 제거
swkim12345 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,9 +5,11 @@ import { | |
CreateDateColumn, | ||
JoinColumn, | ||
ManyToOne, | ||
Index, | ||
} from 'typeorm'; | ||
import { Stock } from './stock.entity'; | ||
|
||
@Index('stock_id_start_time', ['stock.id', 'startTime'], { unique: true }) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍👍 |
||
export class StockData { | ||
@PrimaryGeneratedColumn() | ||
id: number; | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
계좌 정보를 공유되는 큐를 통해서 가져오면 분배가 잘 되거라고 생각합니다