~ignacio-nin/galera/galera-2.x

« back to all changes in this revision

Viewing changes to galera/src/ist.cpp

  • Committer: Alex Yurchenko
  • Date: 2012-01-04 14:25:24 UTC
  • mfrom: (87.1.12 1.x)
  • Revision ID: ayurchen@void-20120104142524-pr4qsy3np42aoub1
References lp:907623 - increased GCache-related tests timeouts up to 1 minute.

Show diffs side-by-side

added added

removed removed

Lines of Context:
759
759
    }
760
760
    catch (asio::system_error& e)
761
761
    {
 
762
        recv_addr_ = "";
762
763
        gu_throw_error(e.code().value()) << "Failed to open IST listener at "
763
764
                                         << uri.to_string();
764
765
    }
768
769
    int err;
769
770
    if ((err = pthread_create(&thread_, 0, &run_receiver_thread, this)) != 0)
770
771
    {
 
772
        recv_addr_ = "";
771
773
        gu_throw_error(err) << "Unable to create receiver thread";
772
774
    }
773
775