@@ -489,10 +489,6 @@ private static void scheduleDomainStatusUpdating(DomainPresenceInfo info) {
489489 AtomicReference <ScheduledFuture <?>> statusUpdater = info .getStatusUpdater ();
490490 Runnable command = new Runnable () {
491491 public void run () {
492-
493- // TEST
494- System .out .println ("**** 2 **** domainUID: " + info .getDomain ().getSpec ().getDomainUID ());
495-
496492 Runnable r = this ; // resolve visibility
497493 Packet packet = new Packet ();
498494 packet .getComponents ().put (ProcessingConstants .DOMAIN_COMPONENT_NAME ,
@@ -539,21 +535,11 @@ public void onThrowable(Packet packet, Throwable throwable) {
539535 }
540536 };
541537
542- // TEST
543- System .out .println ("**** 3 **** domainUID: " + info .getDomain ().getSpec ().getDomainUID ());
544-
545538 MainTuning main = tuningAndConfig .getMainTuning ();
546539 ScheduledFuture <?> existing = statusUpdater .getAndSet (
547540 engine .getExecutor ().scheduleWithFixedDelay (command , main .initialShortDelay , main .initialShortDelay , TimeUnit .SECONDS ));
548541
549- // TEST
550- System .out .println ("**** 4 **** domainUID: " + info .getDomain ().getSpec ().getDomainUID ());
551-
552542 if (existing != null ) {
553-
554- // TEST
555- System .out .println ("**** 5 **** domainUID: " + info .getDomain ().getSpec ().getDomainUID ());
556-
557543 existing .cancel (false );
558544 }
559545 }
@@ -587,9 +573,6 @@ private static void doCheckAndCreateDomainPresence(
587573 normalizeDomainSpec (spec );
588574 String domainUID = spec .getDomainUID ();
589575
590- // TEST
591- System .out .println ("**** -1 **** domainUID: " + domainUID );
592-
593576 DomainPresenceInfo created = new DomainPresenceInfo (dom );
594577 DomainPresenceInfo info = domains .putIfAbsent (domainUID , created );
595578 if (info == null ) {
@@ -610,10 +593,6 @@ private static void doCheckAndCreateDomainPresence(
610593 String ns = dom .getMetadata ().getNamespace ();
611594 if (initialized .getOrDefault (ns , Boolean .FALSE ) && !stopping .get ()) {
612595 LOGGER .info (MessageKeys .PROCESSING_DOMAIN , domainUID );
613-
614- // TEST
615- System .out .println ("**** 0 **** domainUID: " + domainUID );
616-
617596 Step managedServerStrategy = bringManagedServersUp (
618597 DomainStatusUpdater .createEndProgressingStep (null ));
619598 Step adminServerStrategy = bringAdminServerUp (
@@ -683,9 +662,6 @@ public void onThrowable(Packet packet, Throwable throwable) {
683662 }
684663 });
685664
686- // TEST
687- System .out .println ("**** 1 **** domainUID: " + domainUID );
688-
689665 scheduleDomainStatusUpdating (info );
690666 }
691667 LOGGER .exiting ();
0 commit comments