This is an automated email from the ASF dual-hosted git repository.
bmahler pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git
The following commit(s) were added to refs/heads/master by this push:
new f84bf555b Rename variable 'resources' to correct name
'resourceRequests'
f84bf555b is described below
commit f84bf555bb2ba8894dc4757edc0f08e6c49894d7
Author: Devin Leamy <[email protected]>
AuthorDate: Tue Jan 23 22:49:05 2024 +0000
Rename variable 'resources' to correct name 'resourceRequests'
---
src/slave/containerizer/mesos/isolators/network/port_mapping.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/slave/containerizer/mesos/isolators/network/port_mapping.cpp
b/src/slave/containerizer/mesos/isolators/network/port_mapping.cpp
index 9d21d1f52..894539002 100644
--- a/src/slave/containerizer/mesos/isolators/network/port_mapping.cpp
+++ b/src/slave/containerizer/mesos/isolators/network/port_mapping.cpp
@@ -3983,8 +3983,8 @@ Future<Nothing> PortMappingIsolatorProcess::update(
}
}
- Option<htb::cls::Config> egressConfig = egressHTBConfig(resources);
- Option<htb::cls::Config> ingressConfig = ingressHTBConfig(resources);
+ Option<htb::cls::Config> egressConfig = egressHTBConfig(resourceRequests);
+ Option<htb::cls::Config> ingressConfig = ingressHTBConfig(resourceRequests);
// Update ingress HTB configuration.
if (ingressConfig != info->ingressConfig &&