I have recently started developing in clojure and I don't have many experiences. I'm using calva extention for vscode as the development environment. I have setup an environment variable for "calva.jackInEnv" in Settings.json, but it keeps connecting to the localhost. This variable stores a kafka connection string to kafka node address.
Settings.json is given below.
{
"calva.jackInEnv": {
"KAFKA_BROKER_STRING": "{some_address}:{port}"
}
}
And the response that I'm getting.
I have restarted the process after adding the env variable also. Does anybody know how to fix this issue?