Markus Mäkelä
Markus Mäkelä
Source file: ```c++ MXS_MODULE* MXS_CREATE_MODULE() { static MXS_MODULE info = { MXS_MODULE_API_ROUTER, { { "binlogdir", MXS_MODULE_PARAM_PATH, NULL, MXS_MODULE_OPT_PATH_R_OK | MXS_MODULE_OPT_PATH_W_OK | MXS_MODULE_OPT_PATH_X_OK | MXS_MODULE_OPT_PATH_CREAT }, {"filestem", MXS_MODULE_PARAM_STRING, BINLOG_NAME_ROOT}, {"group_rows", MXS_MODULE_PARAM_COUNT,...
To connect the Slack and IRC with other systems requires that bot messages that don't originate from the bot itself need to be relayed to IRC. This allows, for example,...
Here's the relevant part of the CMakeLists.txt: ```cmake install(TARGETS vault EXPORT libvaultTargets LIBRARY DESTINATION ${CMAKE_INSTALL_DIR} PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/libvault) ``` I'm assuming that this is an oversight as the project uses...
`wget` supports HTTP Basic Access authentication credentials in the URLs but `wget2` does not. Here's an example URL that works elsewhere: ``` wget https://user:[email protected]/foo.tar.gz ``` A "workaround" to this is...
The --multiple option enables uses ScanMode::TopDown to detect multiple licenses in the same file. The confidence score is still zero for the whole file but having a list of licenses...
Using --collect.slave_hosts with MariaDB which does not yet support `SHOW REPLICAS` and a user who does not have the required grants to run the `SHOW SLAVE HOSTS` command causes a...
The latest version of the API documentation doesn't seem to clearly state what the expected behavior of NULL values for the object and array functions are. Looking at the implementation,...