(self, client)
| 1910 | @pytest.mark.onlynoncluster |
| 1911 | @skip_if_server_version_lt("7.9.0") |
| 1912 | def test_config_with_removed_ftconfig(self, client): |
| 1913 | assert client.config_set("timeout", "100") |
| 1914 | with pytest.raises(redis.ResponseError): |
| 1915 | client.config_set("timeout", "null") |
| 1916 | res = client.config_get("*") |
| 1917 | assert "100" == res["timeout"] |
| 1918 | res = client.config_get("timeout") |
| 1919 | assert "100" == res["timeout"] |
| 1920 | |
| 1921 | @pytest.mark.redismod |
| 1922 | @pytest.mark.onlynoncluster |
nothing calls this directly
no test coverage detected