Replace whitelist with allowlist
[netconf.git] / netconf / callhome-provider / src / main / java / org / opendaylight / netconf / callhome / mount / CallhomeStatusReporter.java
index b3ca407ef238b68e8982627cad0953fddf86c584..fb09da6015bb7580e82d7cc3e3860d374d8d3a85 100644 (file)
@@ -291,7 +291,7 @@ final class CallhomeStatusReporter implements DataTreeChangeListener<Node>, Stat
             return rxTransaction.read(LogicalDatastoreType.OPERATIONAL, IetfZeroTouchCallHomeServerProvider.ALL_DEVICES)
                     .get().orElse(null);
         } catch (ExecutionException | InterruptedException e) {
-            LOG.error("Error trying to read the whitelist devices", e);
+            LOG.error("Error trying to read the allowlist devices", e);
             return null;
         }
     }
@@ -313,7 +313,7 @@ final class CallhomeStatusReporter implements DataTreeChangeListener<Node>, Stat
                 keyString = device.getSshHostKey();
             }
             if (keyString == null) {
-                LOG.info("Whitelist device {} does not have a host key, skipping it", device.getUniqueId());
+                LOG.info("Allowlist device {} does not have a host key, skipping it", device.getUniqueId());
                 continue;
             }
 
@@ -334,7 +334,7 @@ final class CallhomeStatusReporter implements DataTreeChangeListener<Node>, Stat
             }
         }
 
-        LOG.error("No match found for the failed auth device (should have been filtered by whitelist). Key: {}",
+        LOG.error("No match found for the failed auth device (should have been filtered by allowlist). Key: {}",
                 sshKey);
     }