diff --git a/server/modules/filter/cache/storage/storage_inmemory/CMakeLists.txt b/server/modules/filter/cache/storage/storage_inmemory/CMakeLists.txt index 93a39ea58..7fe39fa11 100644 --- a/server/modules/filter/cache/storage/storage_inmemory/CMakeLists.txt +++ b/server/modules/filter/cache/storage/storage_inmemory/CMakeLists.txt @@ -7,4 +7,4 @@ add_library(storage_inmemory SHARED target_link_libraries(storage_inmemory cache maxscale-common) set_target_properties(storage_inmemory PROPERTIES VERSION "1.0.0") set_target_properties(storage_inmemory PROPERTIES LINK_FLAGS -Wl,-z,defs) -install_module(storage_inmemory experimental) +install_module(storage_inmemory core) diff --git a/server/modules/filter/cache/storage/storage_rocksdb/CMakeLists.txt b/server/modules/filter/cache/storage/storage_rocksdb/CMakeLists.txt index b406d2b20..3d76a018d 100644 --- a/server/modules/filter/cache/storage/storage_rocksdb/CMakeLists.txt +++ b/server/modules/filter/cache/storage/storage_rocksdb/CMakeLists.txt @@ -20,7 +20,7 @@ if (ROCKSDB_BUILT) target_link_libraries(storage_rocksdb maxscale-common ${JANSSON_LIBRARIES} ${ROCKSDB_LIB} ${ROCKSDB_LINK_LIBS}) set_target_properties(storage_rocksdb PROPERTIES VERSION "1.0.0") set_target_properties(storage_rocksdb PROPERTIES LINK_FLAGS -Wl,-z,defs) - install_module(storage_rocksdb experimental) + install_module(storage_rocksdb core) else() message("RocksDB not built, storage_rocksdb cannot be built.") endif()