summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2017-07-14 12:07:52 +0200
committerantirez <antirez@gmail.com>2017-07-14 12:07:52 +0200
commit8eefc9323dc677bf266c71c07fe788aef68b4eaf (patch)
tree79945de85d38b20b102df82aa7068d8b900032f6 /src/modules
parentf03947a6761bbfb200cefdae562f1ca58597d927 (diff)
downloadredis-8eefc9323dc677bf266c71c07fe788aef68b4eaf.tar.gz
Allow certain modules APIs only defining REDISMODULE_EXPERIMENTAL_API.
Those calls may be subject to changes in the future, so the user should acknowledge it is using non stable API.
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/helloblock.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/modules/helloblock.c b/src/modules/helloblock.c
index 3ebf10e11..c74fcd30f 100644
--- a/src/modules/helloblock.c
+++ b/src/modules/helloblock.c
@@ -31,6 +31,7 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
+#define REDISMODULE_EXPERIMENTAL_API
#include "../redismodule.h"
#include <stdio.h>
#include <stdlib.h>