0815Hunter
0815Hunter
Our workaround: - set ` convertEmptyValues: true` ``` DynamoDBDocumentClient.from(ddbClient, { marshallOptions: { convertEmptyValues: true, }, }) ``` Note that `convertEmptyValues: true` also sets empty strings / blobs to null, so...
Had the same problem and found the fix by reading: https://docs.confluent.io/platform/current/streams/developer-guide/interactive-queries.html#exposing-the-rpc-endpoints-of-your-application The `application-server` config prop is missing in the application.properties of the example aggregator app, even though mentioned in the...