Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MODAUD-195]. Implement consumer & endpoint for invoice records #175

Merged
merged 9 commits into from
Nov 4, 2024
Prev Previous commit
Next Next commit
[MODORDERS-1208]. Remove unused promises
BKadirkhodjaev committed Nov 4, 2024
commit f51be2c4f8873c3ba7a427a6d2f858d362f1710e
Original file line number Diff line number Diff line change
@@ -54,7 +54,6 @@ public InvoiceEventsDaoImpl(PostgresClientFactory pgClientFactory) {
@Override
public Future<RowSet<Row>> save(InvoiceAuditEvent invoiceAuditEvent, String tenantId) {
LOGGER.debug("save:: Saving Invoice AuditEvent with tenant id : {}", tenantId);
Promise<RowSet<Row>> promise = Promise.promise();
LOGGER.debug("formatDBTableName:: Formatting DB Table Name with tenant id : {}", tenantId);
SerhiiNosko marked this conversation as resolved.
Show resolved Hide resolved
String logTable = formatDBTableName(tenantId, TABLE_NAME);
String query = format(INSERT_SQL, logTable);