@kronos-integration/service 10.4.48 → 10.4.49
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
|
@@ -226,8 +226,8 @@ export const InitializationContext = LogLevelMixin(
|
|
|
226
226
|
|
|
227
227
|
/**
|
|
228
228
|
* - if there is already a service for the given name configure it and we are done
|
|
229
|
-
* - if there is already an outstanding declaration ongoing wait until it is done configure it
|
|
230
|
-
* -
|
|
229
|
+
* - if there is already an outstanding declaration ongoing wait until it is done configure it then
|
|
230
|
+
* - otherwise declare this action as a new outstanding service declaration
|
|
231
231
|
* @param {Object} config
|
|
232
232
|
* @param {string} name service name
|
|
233
233
|
* @return {Service}
|
package/src/service.mjs
CHANGED
|
@@ -148,9 +148,7 @@ export class Service extends EndpointsMixin(
|
|
|
148
148
|
|
|
149
149
|
const owner = ic.ownerOfService(this);
|
|
150
150
|
if (owner !== undefined) {
|
|
151
|
-
|
|
152
|
-
value: owner
|
|
153
|
-
});
|
|
151
|
+
this.owner = owner;
|
|
154
152
|
}
|
|
155
153
|
|
|
156
154
|
if (config === undefined) {
|