Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
当调用
商家转账到零钱
接口,配置中未设置微信平台公钥证书路径
时,报错参数异常: 微信公钥序列号为找到
经排查代码在
get_wechat_serial_no
方法中会做判断如果配置中未设置微信平台公钥证书路径
时,会自动生成微信平台公钥证书
,并更新配置参数但在接下来调用
get_wechat_public_key
,方法获取证书时,使用的是之前获取的 config 信息,而这里面还没有包含新生成的微信平台公钥证书
,导致证书找不到报错参数异常: 微信公钥序列号为找到
修复方式如下, 提现举例: