pmcf 2.0.0 → 2.0.1

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/service.mjs +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/src/service.mjs CHANGED
@@ -207,7 +207,7 @@ export class Service extends Base {
207
207
  DNSRecord(
208
208
  dnsFullName(`${this.srvPrefix}.${domainName}`),
209
209
  "SRV",
210
- this.priority,
210
+ this.priority || 10,
211
211
  this.weight,
212
212
  this.port,
213
213
  dnsFullName(this.domainName)