pmcf 6.32.5 → 6.32.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "6.32.5",
3
+ "version": "6.32.6",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -774,17 +774,10 @@ export class bind extends CoreService {
774
774
  groups = new Map();
775
775
 
776
776
  set serverType(value) {
777
- //console.log("SET SERVERTYPE", this.fullName, value);
778
777
  this._serverType = value;
779
778
  }
780
779
 
781
780
  get serverType() {
782
- /*console.log(
783
- "GET SERVERTYPE",
784
- this.fullName,
785
- this._serverType ?? (this.primaries ? "secondary" : "primary")
786
- );*/
787
-
788
781
  return this._serverType ?? (this.primaries ? "secondary" : "primary");
789
782
  }
790
783
 
@@ -792,7 +785,7 @@ export class bind extends CoreService {
792
785
  // TODO formulate everything as pacc expression
793
786
 
794
787
  const forwarders = endpointAddresses(this.forwarders);
795
-
788
+
796
789
  if (forwarders.length) {
797
790
  await writeLines(
798
791
  join(outputControl.dir, "etc/named/options"),