Skip to content

Commit

Permalink
request_certification 요청 도메인 이슈 수정
Browse files Browse the repository at this point in the history
내부적으로 execute 호출 시 서비스 타입이 잘못되어 무조건 sandbox로
요청하는 현상이 발생하여 수정 진행
  • Loading branch information
dc7303 committed Oct 5, 2020
1 parent 44316e0 commit 15b3434
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion easycodefpy/easycodefpy.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def request_certification(self, product_path: str, service_type: ServiceType, pa
if not _has_two_way_keyword(param):
return json.dumps(MESSAGE_INVALID_2WAY_INFO, ensure_ascii=False)

res = execute(product_path, param, self, param)
res = execute(product_path, param, self, service_type)
return json.dumps(res, ensure_ascii=False)

def check_client_info(self, service_type: ServiceType) -> bool:
Expand Down

0 comments on commit 15b3434

Please sign in to comment.