Skip to content
This repository has been archived by the owner on Jul 20, 2023. It is now read-only.

Commit

Permalink
Update PostgreSQLClient.gd
Browse files Browse the repository at this point in the history
  • Loading branch information
Marzin-bot authored Nov 9, 2021
1 parent 01f44ba commit 8fc712f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PostgreSQLClient.gd
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ var status_ssl = 0

var global_url = ""
var startup_message: PoolByteArray
var next_etape := 0
var next_etape := false
var con_ssl: bool

## Allows you to connect to a Postgresql backend at the specified url.
Expand Down Expand Up @@ -126,7 +126,7 @@ func connect_to_host(url: String, ssl := false, connect_timeout := 30) -> int:
#if (error == OK)
# Get the fist message of server.
if error == OK:
next_etape = 1
next_etape = true
else:
print("[PostgreSQLClient:%d] Invalid host Postgres." % [get_instance_id()])
else:
Expand Down

0 comments on commit 8fc712f

Please sign in to comment.