geonix 1.10.7 → 1.10.8

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/Request.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "geonix",
3
- "version": "1.10.7",
3
+ "version": "1.10.8",
4
4
  "type": "module",
5
5
  "description": "",
6
6
  "bin": {
package/src/Request.js CHANGED
@@ -69,7 +69,7 @@ export async function Request(service, method, args = [], context = [], options)
69
69
  // get service instance identifier and wait for it if it's not available
70
70
  const registryTimeout = options?.timeout ?? REGISTRY_TIMEOUT
71
71
  const delay = 5
72
- let retries = Math.floor(REGISTRY_TIMEOUT / delay)
72
+ let retries = Math.floor(registryTimeout / delay)
73
73
  while (identifier == null && retries-- > 0) {
74
74
  identifier = registry.getIdentifier(name, version, id)
75
75
  if (!identifier)