pmcf 6.16.1 → 6.16.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.
package/bin/pmcf-diagram CHANGED
@@ -32,7 +32,7 @@ for await (const network of location.networks) {
32
32
  .join(" ")}" shape=circle];`
33
33
  );
34
34
 
35
- for await (const na of network.networkAddresses(
35
+ for (const na of network.networkAddresses(
36
36
  na =>
37
37
  na.networkInterface.network === network &&
38
38
  !na.networkInterface.isTemplate &&
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "6.16.1",
3
+ "version": "6.16.2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -356,7 +356,7 @@ export class kea extends CoreService {
356
356
  const hwmap = new Map();
357
357
  const hostNames = new Set();
358
358
 
359
- for await (const { networkInterface } of source.networkAddresses()) {
359
+ for (const { networkInterface } of source.networkAddresses()) {
360
360
  if (networkInterface.hwaddr) {
361
361
  if (!hostNames.has(networkInterface.hostName)) {
362
362
  hwmap.set(networkInterface.hwaddr, networkInterface);