| | |
| | | import java.util.Set; |
| | | import java.util.TreeSet; |
| | | |
| | | import javax.inject.Inject; |
| | | import javax.inject.Singleton; |
| | | |
| | | import org.apache.commons.pool2.impl.GenericObjectPoolConfig; |
| | | |
| | | import redis.clients.jedis.Client; |
| | |
| | | import com.gitblit.models.TicketModel.Change; |
| | | import com.gitblit.utils.ArrayUtils; |
| | | import com.gitblit.utils.StringUtils; |
| | | import com.google.inject.Inject; |
| | | import com.google.inject.Singleton; |
| | | |
| | | /** |
| | | * Implementation of a ticket service based on a Redis key-value store. All |
| | |
| | | |
| | | @Override |
| | | public RedisTicketService start() { |
| | | log.info("{} started", getClass().getSimpleName()); |
| | | if (!isReady()) { |
| | | log.warn("{} is not ready!", getClass().getSimpleName()); |
| | | } |
| | | return this; |
| | | } |
| | | |