Skip to content

Commit

Permalink
Replaced sslMode type
Browse files Browse the repository at this point in the history
  • Loading branch information
ongdisheng committed Jan 3, 2025
1 parent 1ea9289 commit 226eee2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wren-ui/src/apollo/server/repositories/projectRepository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
snakeCase,
isEmpty,
} from 'lodash';
import { DataSourceName } from '@server/types';
import { DataSourceName, SSLMode } from '@server/types';

export interface BIG_QUERY_CONNECTION_INFO {
projectId: string;
Expand All @@ -30,7 +30,7 @@ export interface MYSQL_CONNECTION_INFO {
user: string;
password: string;
database: string;
sslMode: string;
sslMode: SSLMode;
sslCA?: string;
}

Expand Down

0 comments on commit 226eee2

Please sign in to comment.