File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 6767
6868#define CHECKM (COND , M , ...) \
6969 if (!(COND)) { \
70- LOG_ERROR ("Check failure: %s \n" M, #COND, ##__VA_ARGS__); \
70+ LOG_FATAL ("Check failure: %s \n" M, #COND, ##__VA_ARGS__); \
7171 }
7272
7373#define CHECK (COND ) CHECKM(COND, "")
Original file line number Diff line number Diff line change @@ -69,8 +69,8 @@ int64_t table_timeout_handler(event_loop *loop,
6969 if (callback_data -> retry .num_retries == 0 ) {
7070 /* We didn't get a response from the database after exhausting all retries;
7171 * let user know, cleanup the state, and remove the timer. */
72- LOG_WARN ("Table command %s with timer ID %ld failed" , callback_data -> label ,
73- timer_id );
72+ LOG_WARN ("Table command %s with timer ID %" PRId64 " failed" ,
73+ callback_data -> label , timer_id );
7474 if (callback_data -> retry .fail_callback ) {
7575 callback_data -> retry .fail_callback (
7676 callback_data -> id , callback_data -> user_context , callback_data -> data );
You can’t perform that action at this time.
0 commit comments