| 7466 | } |
| 7467 | |
| 7468 | static void Python_UnlinkSession(const char* sessionId) { |
| 7469 | PythonSessionCtx* s = PythonSessionCtx_Get(sessionId); |
| 7470 | if (s) { |
| 7471 | PythonSessionCtx_Unlink(s); |
| 7472 | PythonSessionCtx_Free(s); |
| 7473 | } |
| 7474 | } |
| 7475 | |
| 7476 | static void Python_Info(RedisModuleInfoCtx *ctx, int for_crash_report) { |
| 7477 | if (RedisModule_InfoAddSection(ctx, "python_stats") == REDISMODULE_OK) { |
nothing calls this directly
no test coverage detected