diff --git a/honeypot/store/postgres.go b/honeypot/store/postgres.go index e0e7e46..d4ed193 100644 --- a/honeypot/store/postgres.go +++ b/honeypot/store/postgres.go @@ -57,18 +57,13 @@ RETURNING id;` return err } l.ID = id - return nil + return tx.Commit() } func (s *PostgresStore) All() ([]models.LoginAttempt, error) { stmt := `SELECT date, remote_ip, username, password, client_version, connection_uuid, country FROM login_attempts` - tx, err := s.db.Begin() - if err != nil { - return nil, err - } - - rows, err := tx.Query(stmt) + rows, err := s.db.Query(stmt) if err != nil { return nil, err }