You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In EventuateCommonReactiveJdbcOperations class, There is a block call in columnToJson method.
`public String columnToJson(EventuateSchema eventuateSchema, String column) {
In EventuateCommonReactiveJdbcOperations class, There is a block call in columnToJson method.
`public String columnToJson(EventuateSchema eventuateSchema, String column) {
}`
Blockhoud would not let it run.
I had to change the code a bit to get rid of blocking code part.
`import static io.eventuate.common.jdbc.EventuateJdbcOperationsUtils.MESSAGE_AUTO_GENERATED_ID_COLUMN;
import java.util.HashMap;
import java.util.Map;
import io.eventuate.common.id.IdGenerator;
import io.eventuate.common.jdbc.EventuateJdbcOperationsUtils;
import io.eventuate.common.jdbc.EventuateSchema;
import io.eventuate.common.jdbc.sqldialect.EventuateSqlDialect;
import io.eventuate.common.json.mapper.JSonMapper;
import io.eventuate.common.reactive.jdbc.EventuateCommonReactiveJdbcOperations;
import io.eventuate.common.reactive.jdbc.EventuateReactiveJdbcStatementExecutor;
import reactor.core.publisher.Mono;
public class EventuateCommonReactiveOperations extends EventuateCommonReactiveJdbcOperations {
The text was updated successfully, but these errors were encountered: