Skip to content

Commit

Permalink
Skip SSL cert verification
Browse files Browse the repository at this point in the history
  • Loading branch information
iychoi committed Jun 26, 2023
1 parent 66201dc commit f6c26e9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions irods/connection/connection.go
Original file line number Diff line number Diff line change
Expand Up @@ -379,8 +379,9 @@ func (conn *IRODSConnection) sslStartup() error {
}

sslConf := &tls.Config{
RootCAs: caCertPool,
ServerName: conn.account.Host,
RootCAs: caCertPool,
ServerName: conn.account.Host,
InsecureSkipVerify: true,
}

// Create a side connection using the existing socket
Expand Down

0 comments on commit f6c26e9

Please sign in to comment.