Merge pull request #24 from freeflowuniverse/development_grid

fix: use redis client reference in threefold grid module
This commit is contained in:
2025-01-14 18:44:45 +02:00
committed by GitHub

View File

@@ -78,7 +78,7 @@ pub fn (zdb ZDBDeployed) ping() bool {
panic('implement')
}
pub fn (zdb ZDBDeployed) redisclient() !redisclient.Redis {
pub fn (zdb ZDBDeployed) redisclient() !&redisclient.Redis {
redis_addr := '${zdb.mycelium_ip}:6379'
return redisclient.new(redis_addr)!
}