Skip to content

Commit

Permalink
Merge pull request #283 from credebl/oob-issuance-and-verification
Browse files Browse the repository at this point in the history
fix: Agent protocol add on the agent-service file
  • Loading branch information
nishad-ayanworks authored Nov 21, 2023
2 parents 9d5aedf + 4b10827 commit f141c55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/agent-service/src/agent-service.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ export class AgentServiceService {
return agentSpinUpResponse.then(async (agentDetails) => {
if (agentDetails) {
const controllerEndpoints = JSON.parse(agentDetails);
const agentEndPoint = `${process.env.API_GATEWAY_PROTOCOL}://${controllerEndpoints.CONTROLLER_ENDPOINT}`;
const agentEndPoint = `${process.env.AGENT_PROTOCOL}://${controllerEndpoints.CONTROLLER_ENDPOINT}`;

if (agentEndPoint && agentSpinupDto.clientSocketId) {
const socket = io(`${process.env.SOCKET_HOST}`, {
Expand Down
2 changes: 1 addition & 1 deletion libs/common/src/response-messages/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ export const ResponseMessages = {
fetch: 'Credentials fetched successfully',
importCSV: 'File imported sucessfully',
previewCSV: 'File details fetched sucessfully',
bulkIssuance: 'Issunace process started. It will take some time',
bulkIssuance: 'Issuance process started. It will take some time',
notFound: 'Schema records not found'
},
error: {
Expand Down

0 comments on commit f141c55

Please sign in to comment.