Skip to content

Commit

Permalink
[FIX] Pick 연동 & 문자 디버그 모드 해제
Browse files Browse the repository at this point in the history
  • Loading branch information
mallycrip committed Apr 11, 2021
1 parent a3f5135 commit 5ab3f85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion domain/usecase/go_out_usecase.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@ def run(self, uuid, outing_id, x_request_id):
)

self.pick_service.absent(
int(f"{student._grade}{student._group}{student._student_number}"),
int(f"{student._grade}{student._group}{str(student._student_number).zfill(2)}"),
datetime.fromtimestamp(time.time()), outing.end_time)
2 changes: 1 addition & 1 deletion infrastructure/sms/sms_service_impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def send(self, target_number: str, message: str):
'receiver': target_number,
'msg': message,
'msg_type': 'SMS',
'testmode_yn': 'Y'
'testmode_yn': 'N'
}

send_response = requests.post(send_url, data=sms_data)
Expand Down

0 comments on commit 5ab3f85

Please sign in to comment.