Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielePalaia committed Nov 17, 2020
1 parent 994cbd9 commit dbd40fa
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified gpss-rabbit-greenplum-connector
Binary file not shown.
2 changes: 1 addition & 1 deletion gpss_utility.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func (client *gpssClient) ConnectToGrpcServer() {
func (client *gpssClient) ConnectToGreenplumDatabase() {

log.Printf("connecting to a greenplum database")
connReq := gpss.ConnectRequest{Host: client.GreenplumAddress, Port: client.GreenplumPort, Username: client.GreenplumUser, DB: client.Database}
connReq := gpss.ConnectRequest{Host: client.GreenplumAddress, Port: client.GreenplumPort, Password: client.GreenplumPasswd, Username: client.GreenplumUser, DB: client.Database}
var err error
client.session, err = client.client.Connect(context.Background(), &connReq)
if err != nil {
Expand Down

0 comments on commit dbd40fa

Please sign in to comment.