summaryrefslogtreecommitdiffstats
path: root/configd/src/apps/sentinel/outward-check.h
diff options
context:
space:
mode:
Diffstat (limited to 'configd/src/apps/sentinel/outward-check.h')
-rw-r--r--configd/src/apps/sentinel/outward-check.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/configd/src/apps/sentinel/outward-check.h b/configd/src/apps/sentinel/outward-check.h
index 0ae71c1b892..0e53b9010dc 100644
--- a/configd/src/apps/sentinel/outward-check.h
+++ b/configd/src/apps/sentinel/outward-check.h
@@ -15,16 +15,16 @@ namespace config::sentinel {
struct OutwardCheckContext {
vespalib::CountDownLatch latch;
- std::string myHostname;
- int myPortnum;
+ std::string targetHostname;
+ int targetPortnum;
FRT_Supervisor &orb;
OutwardCheckContext(size_t count,
const std::string &hostname,
int portnumber,
FRT_Supervisor &supervisor)
: latch(count),
- myHostname(hostname),
- myPortnum(portnumber),
+ targetHostname(hostname),
+ targetPortnum(portnumber),
orb(supervisor)
{}
~OutwardCheckContext();