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:
2
server/modules/filter/cache/cacheconfig.cc
vendored
2
server/modules/filter/cache/cacheconfig.cc
vendored
@ -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;
|
||||
|
||||
|
2
server/modules/filter/cache/cacheconfig.hh
vendored
2
server/modules/filter/cache/cacheconfig.hh
vendored
@ -70,7 +70,7 @@ public:
|
||||
}
|
||||
|
||||
private:
|
||||
bool configure() override;
|
||||
bool post_configure(const MXS_CONFIG_PARAMETER& params) override;
|
||||
|
||||
private:
|
||||
static config::Specification s_specification;
|
||||
|
Reference in New Issue
Block a user