PAN-15 fix the request changes

This commit is contained in:
dantanxiaotian
2019-04-02 16:38:54 -06:00
parent b1d4ed9719
commit adbcd786f0
3 changed files with 216 additions and 48 deletions
@@ -27,7 +27,7 @@ public class UserService {
}
public Optional<Account> getListOfAccount(){
final String auth = "";
final String auth = null;
final Instant start = Instant.now();
try {
@@ -60,7 +60,7 @@ public class UserService {
return Optional.empty();
}
final String auth = "";
final String auth = null;
final Instant start = Instant.now();
try {
@@ -92,7 +92,7 @@ public class UserService {
return Optional.empty();
}
final String auth = "";
final String auth = null;
final Instant start = Instant.now();
try {
@@ -208,7 +208,7 @@ public class UserService {
LOG.info("Returning {}", persistenceApiResponse);
}
else {
LOG.info("Unable to delete user {}", account.toString());
LOG.info("Unable to delete user {}");
}
return persistenceApiResponse;