Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions plugins/remsql/fdb_comm.c
Original file line number Diff line number Diff line change
Expand Up @@ -3325,6 +3325,13 @@ int fdb_send_begin(struct sqlclntstate *clnt, fdb_msg_t *msg, fdb_tran_t *trans,
{
int rc;

static int counter = 0;

if (counter % 1000 == 0) {
++counter;
logmsg(LOGMSG_ERROR, "SENDING REMTRAN %d!\n", counter);
}

/* clean previous whatever */
fdb_msg_clean_message(msg);

Expand Down Expand Up @@ -3972,6 +3979,13 @@ int handle_remtran_request(comdb2_appsock_arg_t *arg)

sb = arg->sb;

static int counter = 0;

if (counter % 1000 == 0) {
++counter;
logmsg(LOGMSG_ERROR, "RECEIVED REMTRAN %d!\n", counter);
}

bzero(&msg, sizeof(msg));

/* This does insert on behalf of an sql transaction */
Expand Down
Loading