Skip to content

Commit afa348d

Browse files
committed
[Fix] Remove 300m restriction
1 parent d38763d commit afa348d

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

src/main/java/boombimapi/domain/vote/application/service/impl/VoteServiceImpl.java

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,16 @@ private List<VoteRes> voteList(Member user, double latitude, double longitude) {
228228

229229
List<VoteRes> voteResList = new ArrayList<>();
230230

231-
List<Vote> votes = calculate300(latitude, longitude);
231+
/**
232+
* QA 떄문에 잠시 닫겠음
233+
*/
234+
// List<Vote> votes = calculate300(latitude, longitude);
235+
236+
/**
237+
* QA 끝나면 주석 처리 할 예정
238+
*/
239+
List<Vote> votes = voteRepository.findAll();
240+
232241
for (Vote vote : votes) {
233242
if (!vote.isVoteActivate() || vote.getVoteStatus().equals(VoteStatus.END))
234243
continue;

0 commit comments

Comments
 (0)