MXS-2556 Rename configure -> post_configure

Rename config::Configuration::configure() to
config::Configuration::post_configure(). Latter name makes it
unambiguously clear at what point the function is called.
This commit is contained in:
Johan Wikman
2019-06-10 18:50:51 +03:00
parent a6b456dfbd
commit 68af4cb62e
4 changed files with 7 additions and 5 deletions

View File

@ -176,7 +176,7 @@ CacheConfig::~CacheConfig()
MXS_FREE(this->zStorage_options);
}
bool CacheConfig::configure()
bool CacheConfig::post_configure(const MXS_CONFIG_PARAMETER&)
{
bool configured = true;

View File

@ -70,7 +70,7 @@ public:
}
private:
bool configure() override;
bool post_configure(const MXS_CONFIG_PARAMETER& params) override;
private:
static config::Specification s_specification;