PAR-23735: Execution Engine Config Fix
Addresses PAR-23735.
The old execution engine configs had trailing commas that caused parsing errors.
To reproduce:
- Create a configuration file with the old example
- Create a docker compose file per the Partisia documentation
- Attempt to run
docker compose -f .\compose.yaml up -dfrom the correct directory with respect to your configuration file - View the error messages with
docker logs ee-node1 --follow
The expected error message will look like
It says "expecting double-quote to start field name" because the parser is expecting another field name after the trailing comma.
