Explorar el Código

Fix bug in previous commit.

master
rewby hace 10 meses
padre
commit
fcba319f4c
Firmado por: rewby ID de clave GPG: 4C2B6D2972EE5423
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/client_manager.rs

+ 1
- 1
src/client_manager.rs Ver fichero

@@ -15,7 +15,7 @@ fn pool_from_redisinfo(info: &TrackerRedisInfo) -> color_eyre::Result<Pool<Clien
let new_client = Client::open(url)?;

let max_pool_size = std::env::var("MAX_REDIS_POOL_SIZE")
.unwrap_or_else(|| "32".to_string())
.unwrap_or_else(|_| "32".to_string())
.parse()
.unwrap_or(32);



Cargando…
Cancelar
Guardar