Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(config): change DEFAULT_TCP_CHECK_HTTP_METHOD #14

Merged
merged 1 commit into from
Jun 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export const DEFAULT_TCP_CHECK_URL = [
'http://keep-alv.google.com/generate_204',
]
export const DEFAULT_DIAL_MODE = DialMode.domain
export const DEFAULT_TCP_CHECK_HTTP_METHOD = TcpCheckHttpMethod.CONNECT
export const DEFAULT_TCP_CHECK_HTTP_METHOD = TcpCheckHttpMethod.HEAD
export const DEFAULT_DISABLE_WAITING_NETWORK = false
export const DEFAULT_AUTO_CONFIG_KERNEL_PARAMETER = false
export const DEFAULT_TLS_IMPLEMENTATION = TLSImplementation.tls
Expand Down
2 changes: 2 additions & 0 deletions src/schemas/gql/graphql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ export type Dae = {
/** modified indicates whether the running config has been modified. */
modified: Scalars['Boolean']['output']
running: Scalars['Boolean']['output']
version: Scalars['String']['output']
}

export type DaeDns = {
Expand Down Expand Up @@ -99,6 +100,7 @@ export type General = {
__typename?: 'General'
dae: Dae
interfaces: Array<Interface>
schema: Scalars['String']['output']
}

export type GeneralInterfacesArgs = {
Expand Down