~raghavendra-prabhu/percona-xtradb-cluster/release-5.5.30-galera-2.x

« back to all changes in this revision

Viewing changes to galera/src/replicator_smm_params.cpp

  • Committer: Raghavendra D Prabhu
  • Date: 2013-04-12 15:26:34 UTC
  • mfrom: (95.2.24 2.x)
  • Revision ID: raghavendra.prabhu@percona.com-20130412152634-2y2u0swshf5fie2x
Merge lp:galera-2.x upto revision 150.

Following bugs are fixed:

lp:1166065
lp:1164992

Show diffs side-by-side

added added

removed removed

Lines of Context:
66
66
void
67
67
galera::ReplicatorSMM::set_param (const std::string& key,
68
68
                                  const std::string& value)
69
 
    throw (gu::Exception)
70
69
{
71
70
    if (key == Param::commit_order)
72
71
    {
99
98
void
100
99
galera::ReplicatorSMM::param_set (const std::string& key,
101
100
                                  const std::string& value)
102
 
    throw (gu::Exception, gu::NotFound)
103
101
{
104
102
    try
105
103
    {
141
139
 
142
140
std::string
143
141
galera::ReplicatorSMM::param_get (const std::string& key) const
144
 
    throw (gu::Exception, gu::NotFound)
145
142
{
146
143
    return config_.get(key);
147
144
}