memcachec
プラグインを使用して memcached からデータを読み取ろうとしていますが、この構成を使用している場合:
<Plugin "memcachec">
<Page "plugin_instance">
Key "KEY1"
Server "localhost"
...
</Page>
</Plugin>
memcachec plugin: Option 'server' not allowed here.
サーバーオプションを削除すると、 が得られますmemcachec plugin: 'Server' missing in 'Page' block.
。memcachec のソースを確認したところ、次のコードがあります (memcachec.c、329 行目):
if (strcasecmp ("Server", child->key) == 0)
status = cmc_config_add_string ("Server", &page->server, child);
if (strcasecmp ("Key", child->key) == 0)
status = cmc_config_add_string ("Key", &page->key, child);
else if (strcasecmp ("Match", child->key) == 0)
/* Be liberal with failing matches => don't set `status'. */
cmc_config_add_match (page, child);
else
{
WARNING ("memcachec plugin: Option `%s' not allowed here.", child->key);
status = -1;
}
2番目if
はelse if
プラグインが機能するためだったようです。これはバグですか?どこに報告すればよいですか?公式の修正が届くまでローカルで修正する適切な方法は何ですか?