Skip to content

Commit

Permalink
Merge pull request #242 from rk2b-fenghaolun/develop
Browse files Browse the repository at this point in the history
fix verifyGateway param
  • Loading branch information
rk2b-fenghaolun authored Mar 12, 2024
2 parents dc0381a + cd1da74 commit 3ec1327
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,9 @@ public BaseResultEntity changeLocalOrganInfo(ChangeLocalOrganInfoParam changeLoc
}
}
String uniqueIdentification = UUID.randomUUID().toString();
String data = String.format("{'uniqueIdentification':%s}", uniqueIdentification);
//String data = String.format("{'uniqueIdentification':%s}", uniqueIdentification);
sysCommonPrimaryRedisRepository.setValue(RedisKeyConstant.ORGAN_VERIFY_GATEWAY_UUID,uniqueIdentification);
BaseResultEntity baseResultEntity = otherBusinessesService.syncGatewayApiData(data, sysLocalOrganInfo.getGatewayAddress() + "/share/shareData/verifyGateway", null);
BaseResultEntity baseResultEntity = otherBusinessesService.syncGatewayApiData(uniqueIdentification, sysLocalOrganInfo.getGatewayAddress() + "/share/shareData/verifyGateway", null);
if (!baseResultEntity.getCode().equals(BaseResultEnum.SUCCESS.getReturnCode())){
return baseResultEntity;
}
Expand Down
6 changes: 3 additions & 3 deletions primihub-service/gateway/src/main/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ spring:
servlet:
multipart:
enabled: true
max-file-size: 10MB
max-request-size: 10MB
max-file-size: 100MB
max-request-size: 100MB
file-size-threshold: 1MB
cloud:
nacos:
Expand Down Expand Up @@ -86,4 +86,4 @@ spring:
logging:
level:
root: debug
config: classpath:logback-privacy.xml
config: classpath:logback-privacy.xml

0 comments on commit 3ec1327

Please sign in to comment.