pmcf 4.25.21 → 4.25.22
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 +1 -1
- package/src/host.mjs +1 -14
package/package.json
CHANGED
package/src/host.mjs
CHANGED
|
@@ -111,20 +111,7 @@ export class Host extends ServiceOwner {
|
|
|
111
111
|
super.materializeExtends();
|
|
112
112
|
|
|
113
113
|
for (const host of this.walkDirections(["extends"])) {
|
|
114
|
-
|
|
115
|
-
const present = this._services.get(name);
|
|
116
|
-
if (present) {
|
|
117
|
-
/* console.log(
|
|
118
|
-
"LINK",
|
|
119
|
-
present.fullName,
|
|
120
|
-
service.fullName,
|
|
121
|
-
present.extends
|
|
122
|
-
);*/
|
|
123
|
-
present.extends.add(service);
|
|
124
|
-
} else {
|
|
125
|
-
this._services.set(name, service.forOwner(this));
|
|
126
|
-
}
|
|
127
|
-
}
|
|
114
|
+
|
|
128
115
|
|
|
129
116
|
for (const [name, ni] of host.networkInterfaces) {
|
|
130
117
|
const present = this._networkInterfaces.get(name);
|