Merge pull request #804 from dataease/pr@v1.2@fix_licbar_error

fix: 修复有lic但没有验证器报错
This commit is contained in:
fit2cloud-chenyw
2021-09-09 18:19:56 +08:00
committed by GitHub

View File

@@ -45,9 +45,12 @@ public class DefaultLicenseService {
}
return f2CLicenseResponse;
}catch (Exception e){
e.printStackTrace();
return F2CLicenseResponse.invalid(e.getMessage());
LogUtil.error(e.getMessage());
// e.printStackTrace();
// return F2CLicenseResponse.invalid(e.getMessage());
return F2CLicenseResponse.noRecord();
}
}