~ubuntu-branches/ubuntu/raring/pgpool2/raring-proposed

« back to all changes in this revision

Viewing changes to recovery.c

  • Committer: Bazaar Package Importer
  • Author(s): Christoph Berg
  • Date: 2011-06-10 10:18:29 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20110610101829-oy0uronxs3xz6jer
Tags: 3.0.4-1
* New upstream release
* Use format 3.0 (quilt).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*-pgsql-c-*- */
2
2
/*
3
 
 * $Header: /cvsroot/pgpool/pgpool-II/recovery.c,v 1.18.2.1 2011/02/23 13:19:32 kitagawa Exp $
 
3
 * $Header: /cvsroot/pgpool/pgpool-II/recovery.c,v 1.18.2.2 2011/04/25 22:59:29 t-ishii Exp $
4
4
 *
5
5
 * pgpool: a language independent connection pool server for PostgreSQL
6
6
 * written by Tatsuo Ishii
71
71
        conn = connect_backend_libpq(backend);
72
72
        if (conn == NULL)
73
73
        {
74
 
                PQfinish(conn);
75
 
                pool_error("start_recover: could not connect master node.");
 
74
                pool_error("start_recovery: could not connect master node (%d)", node_id);
76
75
                return 1;
77
76
        }
78
77