Increase OLM timer to turn-up xc power in RDM node 80/74280/2
authorGilles Thouenon <gilles.thouenon@orange.com>
Thu, 5 Jul 2018 10:07:10 +0000 (12:07 +0200)
committerguillaume.lambert <guillaume.lambert@orange.com>
Fri, 20 Jul 2018 12:49:29 +0000 (14:49 +0200)
Increase a timer from 20s to 60s when the RDM node is in a "power" state
to let it configure the optical power level of a cross-connection before
moving to "gainLoss" state.
NB: The value recommended in the openroadm whitepaper is normally 20s.

Change-Id: Ife8153f11977844f2b074d118e1dcfe93858eb79
Signed-off-by: Gilles Thouenon <gilles.thouenon@orange.com>
Co-authored-by: Christophe Betoule <christophe.betoule@orange.com>
olm/src/main/java/org/opendaylight/transportpce/olm/power/PowerMgmt.java

index e7ab4f6ccf46ad6faa97604eedee6f6a99652e9e..8cbb41def5c12b08c0255025ea1ac3c48f324bb0 100644 (file)
@@ -191,9 +191,10 @@ public class PowerMgmt {
                                 LOG.info("Success Value is {}", setXconnPowerSuccessVal);
                                 if (setXconnPowerSuccessVal) {
                                     LOG.info("Roadm-connection: {} updated ");
+                                    //The value recommended by the white paper is 20 seconds and not 60.
                                     //TODO - commented code because one vendor is not supporting
                                     //GainLoss with target-output-power
-                                    Thread.sleep(20000);
+                                    Thread.sleep(60000);
                                     setPowerLevel(nodeId, OpticalControlMode.GainLoss, powerValue,
                                             connectionNumber);
                                 } else {