Antoine
Antoine
Same problem here, `base.conf` ``` service = api service = ${ENV_SERVICE} ``` `derived.conf` ``` include "base.conf" ``` With files in the same directory. ```python >>> file_path = os.path.join... # path...
I'm also having this issue with an inconsistent behavior between Marshmallow and dataclass_json. A lot of my data code looks like this (working example): ```python from dataclasses import dataclass, field...
As a workaround, I've used this: ```rust info!("Starting the consumer loop"); loop { let mut consumer = libpulsar::new_consumer::(&pulsar_conn, &topic).await?; info!("Consumer started"); let e = consumer_loop(consumer).await; warn!("Consumer was closed because of...
I would kind of label it as a bug, as the following is valid PG syntax ```postgresql CREATE TABLE IF NOT EXISTS roles ( id UUID NOT NULL PRIMARY KEY...
Thanks, I will try this next week and come back to you!