@onlineapps/conn-orch-registry 1.1.7 → 1.1.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onlineapps/conn-orch-registry",
3
- "version": "1.1.7",
3
+ "version": "1.1.8",
4
4
  "license": "MIT",
5
5
  "description": "Connector-registry-client provides the core communication mechanism for microservices in this environment. It enables them to interact with a services_registry to receive and fulfill tasks by submitting heartbeats or their API descriptions.",
6
6
  "keywords": [
@@ -66,7 +66,9 @@ class ServiceRegistryClient extends EventEmitter {
66
66
  await this.queueManager.init();
67
67
 
68
68
  // Load validation proof if exists
69
+ console.error(`[RegistryClient] ${this.serviceName}: === CALLING _loadValidationProof() ===`);
69
70
  await this._loadValidationProof();
71
+ console.error(`[RegistryClient] ${this.serviceName}: === FINISHED _loadValidationProof() ===`);
70
72
 
71
73
  // Create service-specific response queue
72
74
  this.serviceResponseQueue = `${this.serviceName}.responses`;
@@ -100,40 +102,49 @@ class ServiceRegistryClient extends EventEmitter {
100
102
  */
101
103
  async _loadValidationProof() {
102
104
  const proofPath = path.join(process.cwd(), '.validation-proof.json');
105
+ const debugLogPath = path.join(process.cwd(), '.validation-debug.log');
106
+
107
+ // Write to file for debugging (append mode)
108
+ const log = (msg) => {
109
+ const timestamp = new Date().toISOString();
110
+ const logLine = `${timestamp} [${this.serviceName}] ${msg}\n`;
111
+ fs.appendFileSync(debugLogPath, logLine);
112
+ console.log(`[RegistryClient] ${msg}`);
113
+ };
103
114
 
104
- // Log attempt with full context
105
- console.log(`[RegistryClient] ${this.serviceName}: Loading validation proof from ${proofPath}`);
106
- console.log(`[RegistryClient] ${this.serviceName}: Current working directory: ${process.cwd()}`);
115
+ log('=== _loadValidationProof() CALLED ===');
116
+ log(`CWD: ${process.cwd()}`);
117
+ log(`Proof path: ${proofPath}`);
107
118
 
108
119
  try {
109
120
  // Check file existence explicitly
110
121
  if (!fs.existsSync(proofPath)) {
111
- console.log(`[RegistryClient] ${this.serviceName}: ⚠️ Validation proof file NOT FOUND at ${proofPath}`);
112
- console.log(`[RegistryClient] ${this.serviceName}: Service will use Tier 2 validation (online validation by Registry)`);
122
+ log(`⚠️ Validation proof file NOT FOUND`);
123
+ log(`Service will use Tier 2 validation`);
113
124
  this.validationProof = null;
114
125
  return;
115
126
  }
116
127
 
117
- console.log(`[RegistryClient] ${this.serviceName}: ✓ Proof file exists, reading...`);
128
+ log(`✓ Proof file exists, reading...`);
118
129
 
119
130
  // Read and parse file
120
131
  const fileContent = fs.readFileSync(proofPath, 'utf8');
121
- console.log(`[RegistryClient] ${this.serviceName}: ✓ File read, size: ${fileContent.length} bytes`);
132
+ log(`✓ File read, size: ${fileContent.length} bytes`);
122
133
 
123
134
  const proofData = JSON.parse(fileContent);
124
- console.log(`[RegistryClient] ${this.serviceName}: ✓ JSON parsed successfully`);
135
+ log(`✓ JSON parsed successfully`);
125
136
 
126
137
  // Validate structure
127
138
  if (!proofData.validationProof) {
128
- console.error(`[RegistryClient] ${this.serviceName}: ❌ ERROR: Missing 'validationProof' field in ${proofPath}`);
129
- console.error(`[RegistryClient] ${this.serviceName}: Available fields: ${Object.keys(proofData).join(', ')}`);
139
+ log(`❌ ERROR: Missing 'validationProof' field`);
140
+ log(`Available fields: ${Object.keys(proofData).join(', ')}`);
130
141
  this.validationProof = null;
131
142
  return;
132
143
  }
133
144
 
134
145
  if (!proofData.validationData) {
135
- console.error(`[RegistryClient] ${this.serviceName}: ❌ ERROR: Missing 'validationData' field in ${proofPath}`);
136
- console.error(`[RegistryClient] ${this.serviceName}: Available fields: ${Object.keys(proofData).join(', ')}`);
146
+ log(`❌ ERROR: Missing 'validationData' field`);
147
+ log(`Available fields: ${Object.keys(proofData).join(', ')}`);
137
148
  this.validationProof = null;
138
149
  return;
139
150
  }
@@ -144,19 +155,19 @@ class ServiceRegistryClient extends EventEmitter {
144
155
  data: proofData.validationData
145
156
  };
146
157
 
147
- console.log(`[RegistryClient] ${this.serviceName}: ✅ SUCCESS - Validation proof loaded`);
148
- console.log(`[RegistryClient] ${this.serviceName}: Proof hash: ${this.validationProof.hash.substring(0, 32)}...`);
149
- console.log(`[RegistryClient] ${this.serviceName}: Validator: ${this.validationProof.data.validator}`);
150
- console.log(`[RegistryClient] ${this.serviceName}: Tests passed: ${this.validationProof.data.testsPassed}/${this.validationProof.data.testsRun}`);
151
- console.log(`[RegistryClient] ${this.serviceName}: Validated at: ${this.validationProof.data.validatedAt}`);
158
+ log(`✅ SUCCESS - Validation proof loaded`);
159
+ log(` Proof hash: ${this.validationProof.hash.substring(0, 32)}...`);
160
+ log(` Validator: ${this.validationProof.data.validator}`);
161
+ log(` Tests passed: ${this.validationProof.data.testsPassed}/${this.validationProof.data.testsRun}`);
162
+ log(` Validated at: ${this.validationProof.data.validatedAt}`);
152
163
 
153
164
  } catch (error) {
154
165
  // Non-critical error - service can still register without proof (will trigger Tier 2 validation)
155
- console.error(`[RegistryClient] ${this.serviceName}: ❌ EXCEPTION while loading validation proof`);
156
- console.error(`[RegistryClient] ${this.serviceName}: Error: ${error.message}`);
157
- console.error(`[RegistryClient] ${this.serviceName}: Stack: ${error.stack}`);
158
- console.error(`[RegistryClient] ${this.serviceName}: Path attempted: ${proofPath}`);
159
- console.log(`[RegistryClient] ${this.serviceName}: Service will use Tier 2 validation (online validation by Registry)`);
166
+ log(`❌ EXCEPTION while loading validation proof`);
167
+ log(` Error: ${error.message}`);
168
+ log(` Stack: ${error.stack}`);
169
+ log(` Path attempted: ${proofPath}`);
170
+ log(`Service will use Tier 2 validation`);
160
171
  this.validationProof = null;
161
172
  }
162
173
  }