Skip to content

Commit

Permalink
Merge pull request #4 from PaaS-TA/patch-credentials
Browse files Browse the repository at this point in the history
[OPENPAAS-SERVICE-JAVA-BROKER-MYSQL] patch-credentials
  • Loading branch information
okpc579 committed Feb 9, 2023
2 parents 8525b3c + 2395ecd commit 351b622
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public ServiceInstanceBinding createServiceInstanceBinding(
String username = mysqlAdminService.getUsername(request.getBindingId());
// 사용자 비밀번호를 생성합니다.
//String password = UUID.randomUUID().toString().replace("-", "");
String password = mysqlAdminService.getUsername(request.getServiceInstanceId());
String password = mysqlAdminService.getUsername(username);

/* 새로운 사용자명이 존재하는지 검증합니다.*/
if (mysqlAdminService.isExistsUser(username)) {
Expand Down

0 comments on commit 351b622

Please sign in to comment.