Skip to content

Commit

Permalink
fix(sso): the default value of verify
Browse files Browse the repository at this point in the history
  • Loading branch information
Kinplemelon authored and ysfscream committed Mar 26, 2024
1 parent 4f4c0db commit 7941ec8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/hooks/SSO/useSSODetail.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { SSL_VERIFY_VALUE_MAP } from '@/common/constants'
import { checkNOmitFromObj } from '@/common/tools'
import {
DashboardSsoBackendStatusBackend,
Expand Down Expand Up @@ -40,7 +41,7 @@ export default (): {
connect_timeout: '15s',
pool_size: 8,
enable_pipelining: 100,
ssl: createSSLForm(),
ssl: { ...createSSLForm(), verify: SSL_VERIFY_VALUE_MAP.get(false) },
method: 'get',
})

Expand Down

0 comments on commit 7941ec8

Please sign in to comment.