Fixing onos-check-logs to ignore the Apache Felix ComponentRegistry exception.

Change-Id: Ib64328aa649dc340d71616554c8ba579c75043a0
diff --git a/tools/test/bin/onos-check-logs b/tools/test/bin/onos-check-logs
index f54fad2..86b199c 100755
--- a/tools/test/bin/onos-check-logs
+++ b/tools/test/bin/onos-check-logs
@@ -108,7 +108,7 @@
             }
 
             # Sanctioned exclusions for exceptions in third-party code; one pattern per exclusion
-            /at org\.apache\.felix\.scr\.impl\.ComponentRegistry\.getComponents\(ComponentRegistry\.java:199\)/ { exclusion = 1; }
+            /at org\.apache\.felix\.scr\.impl\.ComponentRegistry\.getComponentHolders\(ComponentRegistry\.java:356\)/ { exclusion = 1; }
             /at org\.apache\.karaf\.service\.guard\.impl\.GuardProxyCatalog.1.run\(GuardProxyCatalog\.java:253\)/ { exclusion = 1; }
 
         END { exit fail; }