Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ensure Consistent Usage of Environment Variables for Elasticsearch Ho…
…st and Port Configuration ### What was specifically improved? - **Consistency in configuration**: Instead of passing the port as an argument or via a function, you now use an environment variable (`ELASTIC_PORT`), just like for the host. This brings consistency, allowing users to set both the host and port using environment variables, which fits better into automated environments like Docker. - **Simplification of code**: Since the `get_elastic_port` function was removed, the code becomes less complex, and reusing environment variables reduces unnecessary argument passing and functionality.
- Loading branch information