pmcf 1.91.1 → 1.91.2

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/cluster.mjs +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "1.91.1",
3
+ "version": "1.91.2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/src/cluster.mjs CHANGED
@@ -130,7 +130,7 @@ export class Cluster extends Host {
130
130
  cfg.push("}");
131
131
  cfg.push("");
132
132
 
133
- for (const service of cluster.findServices({ type: "http|dns|smtp" })) {
133
+ for (const service of cluster.findServices({ type: "http" })) {
134
134
  cfg.push(`virtual_server ${cluster.rawAddress} ${service.port} {`);
135
135
  cfg.push(` delay_loop ${cluster.checkInterval}`);
136
136
  cfg.push(" lb_algo wlc");