Skip to content

Commit

Permalink
update error message
Browse files Browse the repository at this point in the history
  • Loading branch information
jennifersp committed Sep 21, 2024
1 parent 3bcf6bb commit 8ee9d68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/connection_handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ func (h *ConnectionHandler) handleStartup() error {
}
_, err = h.Conn().Write(performSSL)
if err != nil {
return fmt.Errorf("error sending deny SSL request: %w", err)
return fmt.Errorf("error sending SSL request: %w", err)
}
// If we have a certificate and the client has asked for SSL support, then we switch here.
// This involves swapping out our underlying net connection for a new one.
Expand Down

0 comments on commit 8ee9d68

Please sign in to comment.