(database: string, password: string)
| 166 | return http.post(`/databases/redis/install/cli`, {}, TimeoutEnum.T_5M); |
| 167 | }; |
| 168 | export const changeRedisPassword = (database: string, password: string) => { |
| 169 | if (password) { |
| 170 | password = encodeBase64(password); |
| 171 | } |
| 172 | return http.post(`/databases/redis/password`, { database: database, value: password }); |
| 173 | }; |
| 174 | export const updateRedisPersistenceConf = (params: Database.RedisConfPersistenceUpdate) => { |
| 175 | return http.post(`/databases/redis/persistence/update`, params); |
| 176 | }; |
nothing calls this directly
no test coverage detected