Max疯子
Max疯子
**Describe the bug** ```java final class TracingChannelInterceptorCondition extends AnyNestedCondition { private TracingChannelInterceptorCondition() { super(ConfigurationPhase.REGISTER_BEAN); } @ConditionalOnMissingClass("org.springframework.cloud.function.context.FunctionCatalog") @ConditionalOnProperty(value = "spring.sleuth.integration.enabled", matchIfMissing = true) static class OnFunctionMissing { } @ConditionalOnClass(FunctionCatalog.class) @Conditional(OnEnableBindingCondition.class) @ConditionalOnProperty(value...
1. support discovery a easy way to config oauth2-endpoint https://www.rfc-editor.org/rfc/rfc8414.txt 2. oidc support of endsession-point https://openid.net/specs/openid-connect-rpinitiated-1_0.html#rfc.section.2 3. support of role-mappings config example such as: RoleMappings: ["RoleAdministrator|administrator"] This way, we don't...
现状:当worker下线后,现存任务会不停的尝试,重启实例,导致 instance数据库记录 暴涨 3天600W记录,同时/root/powerjob/server/online_log/下的日志数量打满,已经无法使用 rm -rf ./* 删除。 1. 增加一个InstanceStatus NO_WORKER 也归类到运行状态里面去。 2. 添加定时调度,检查NoWorkerInstance,并将它回归到WaitingDispatch状态 3. runJob找不到worker的时候将状态变为NO_WORKER, 避免重复创建不必要的实例。
实际任务1跑在WORKER-A节点上,我关闭WORKER-A,到任务重新运行在WORKER-B,大概花了10几秒的时间。 在文档中,我没有查找到相关的资料,可以给一些建议吗,我该从哪方面入手。
curl --location --request POST 'http://identity.nuzar.com/oauth2/token' \ --header 'User-Agent: Apifox/1.0.0 (https://www.apifox.cn)' \ --header 'Authorization: Basic NzhhZWQwZmQzNGQxNDJlNjg5YjQwOTYzOWNmNDYyMjA6TnV6YXIxMjM0NTZf' \ --header 'Accept: */*' \ --header 'Host: identity.nuzar.com' \ --header 'Connection: keep-alive' \ --header 'Content-Type:...
场景:公司APP采用uni-app开发,要对接oauth2授权认证,通过/oauth2/authorize自动跳转打开登录页面,因为用了webview,貌似本质上还是iframe,会出现csp内容安全相关问题  目前的临时方案是在后端认证服务上关闭了内容安全策略 问题:内容安全策略在生产环境上肯定要是添加的,那么关于这个问题有没有其它的解决方案