Configuration Changes for 4.1.8

The below configuration changes needs to be done for the 4.1.8 release.

1. Platform Service

In platform configuration, add the below lines of code:

spring:
  main:
    allow-circular-references: true
    lazy-initialization: true
  1. Analytics service

Go to autopilot configuration under audit service and locate the below lines of code:

#audit services
auditservice.enabled=true
auditservice.name=auditservice
auditservice.url=http://oes-audit-service:8097
auditclientservice.name=auditclientservice
auditclientservice.url=http://oes-audit-client:8098

Now replace the lines with the ones given below:

#audit services
secret.auditservice.enabled=true
secret.auditservice.name=auditservice
secret.auditservice.url=http://oes-audit-service:8097
secret.auditclientservice.name=auditclientservice
secret.auditclientservice.url=http://oes-audit-client:8098
  1. Gate Service

In the gate configuration, replace services.user: {} with the code given below:

services.fiat.enabled: false 

Last updated