avoid logging moved-from ip

This commit is contained in:
Lion Kortlepel
2026-04-08 18:06:58 +02:00
parent 6fca901aa2
commit a59f7296d0
+1 -1
View File
@@ -35,7 +35,7 @@ std::optional<TConnectionLimiter::TGuard> TConnectionLimiter::TryAcquire(const s
TConnectionLimiter::TGuard::TGuard(TConnectionLimiter* owner, std::string ip)
: mOwner(owner)
, mIp(std::move(ip)) {
beammp_debugf("Acquired connection guard for {}", ip);
beammp_debugf("Acquired connection guard for {}", mIp);
}
TConnectionLimiter::TGuard& TConnectionLimiter::TGuard::operator=(TGuard&& other) noexcept {