Skip to content

Commit 091bee5

Browse files
committed
don't populate source/dest table ids
1 parent b6805d9 commit 091bee5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

flow/cmd/handler.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ func (h *FlowRequestHandler) createCdcJobEntry(ctx context.Context,
7979

8080
if _, err := h.pool.Exec(ctx,
8181
`INSERT INTO flows (workflow_id, name, source_peer, destination_peer, config_proto, status,
82-
description, source_table_identifier, destination_table_identifier) VALUES ($1,$2,$3,$4,$5,$6,'gRPC','','')`,
82+
description) VALUES ($1,$2,$3,$4,$5,$6,'gRPC')`,
8383
workflowID, req.ConnectionConfigs.FlowJobName, sourcePeerID, destinationPeerID, cfgBytes, protos.FlowStatus_STATUS_SETUP,
8484
); err != nil {
8585
return fmt.Errorf("unable to insert into flows table for flow %s: %w",

0 commit comments

Comments
 (0)