add missing configuration files to dist, eliminate warning on CONFLICT status code in test
This commit is contained in:
parent
8d786441b8
commit
2fdc21f7d7
@ -152,4 +152,5 @@ test_bank_api_with_fakebank_LDADD = \
|
|||||||
libtalerbank.la
|
libtalerbank.la
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
bank.conf
|
bank.conf \
|
||||||
|
bank_twisted.conf
|
||||||
|
@ -289,5 +289,6 @@ EXTRA_DIST = \
|
|||||||
test_exchange_api.conf \
|
test_exchange_api.conf \
|
||||||
test_exchange_api_keys_cherry_picking.conf \
|
test_exchange_api_keys_cherry_picking.conf \
|
||||||
test_exchange_api_keys_cherry_picking_extended.conf \
|
test_exchange_api_keys_cherry_picking_extended.conf \
|
||||||
|
test_exchange_api_expire_reserve_now.conf \
|
||||||
test_auditor_api.conf \
|
test_auditor_api.conf \
|
||||||
test_auditor_api_expire_reserve_now.conf
|
test_auditor_api_expire_reserve_now.conf
|
||||||
|
@ -213,11 +213,17 @@ reserve_withdraw_cb (void *cls,
|
|||||||
case MHD_HTTP_FORBIDDEN:
|
case MHD_HTTP_FORBIDDEN:
|
||||||
/* nothing to check */
|
/* nothing to check */
|
||||||
break;
|
break;
|
||||||
|
case MHD_HTTP_CONFLICT:
|
||||||
|
/* nothing to check */
|
||||||
|
break;
|
||||||
case MHD_HTTP_NOT_FOUND:
|
case MHD_HTTP_NOT_FOUND:
|
||||||
/* nothing to check */
|
/* nothing to check */
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
/* Unsupported status code (by test harness) */
|
/* Unsupported status code (by test harness) */
|
||||||
|
GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
|
||||||
|
"Withdraw test command does not support status code %u\n",
|
||||||
|
http_status);
|
||||||
GNUNET_break (0);
|
GNUNET_break (0);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user