You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`Successfully pulled new singleton "${step.key}".`
574
577
);
575
578
576
579
returntrue;
577
580
}else{
578
581
this.logger.warning(
579
-
`The state store changed during pull of enum "${step.key}"; sync has been interrupted and will need to run again.`
582
+
`The state store changed during pull of singleton "${step.key}"; sync has been interrupted and will need to run again.`
580
583
);
581
584
582
585
returnfalse;
583
586
}
584
587
}else{
585
588
this.logger.warning(
586
-
`The version of enum "${step.key}" changed from "${preflightEnum.version}" at the time of preflight to "${response.value.version}" at the time of pull; sync has been interrupted and will need to run again.`
589
+
`The version of singleton "${step.key}" changed from "${preflightSingleton.version}" at the time of preflight to "${response.value.version}" at the time of pull; sync has been interrupted and will need to run again.`
`No pull required of enum "${step.key}" as preflight and state store versions match ("${preflightEnum.version}").`
601
+
`No pull required of singleton "${step.key}" as preflight and state store versions match ("${preflightSingleton.version}").`
599
602
);
600
603
}else{
601
604
this.logger.information(
602
-
`Previously pulled enum "${step.key}" will be pulled again as versions do not match between preflight ("${preflightEnum.version}") and state store ("${stateEnum.version}").`
605
+
`Previously pulled singleton "${step.key}" will be pulled again as versions do not match between preflight ("${preflightSingleton.version}") and state store ("${stateSingleton.version}").`
`Successfully pulled update of enum "${step.key}".`
641
+
`Successfully pulled update of singleton "${step.key}".`
637
642
);
638
643
639
644
returntrue;
640
645
}else{
641
646
this.logger.warning(
642
-
`The state store changed during pull of enum "${step.key}"; sync has been interrupted and will need to run again.`
647
+
`The state store changed during pull of singleton "${step.key}"; sync has been interrupted and will need to run again.`
643
648
);
644
649
645
650
returnfalse;
646
651
}
647
652
}else{
648
653
this.logger.warning(
649
-
`The version of enum "${step.key}" changed from "${preflightEnum.version}" at the time of preflight to "${response.value.version}" at the time of pull; sync has been interrupted and will need to run again.`
654
+
`The version of singleton "${step.key}" changed from "${preflightSingleton.version}" at the time of preflight to "${response.value.version}" at the time of pull; sync has been interrupted and will need to run again.`
0 commit comments