commit c6633ef267aef3f608c49f5631dc930b8fd5d9a4 parent 2d1c4b44a646b77e63f4ccd88941492beeeffdf8 Author: Marcello Stanisci <stanisci.m@gmail.com> Date: Mon, 11 Jun 2018 15:40:22 +0200 wget needs ApiKey header. Diffstat:
| M | src/lib/testing_api_helpers.c | | | 4 | +++- |
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/lib/testing_api_helpers.c b/src/lib/testing_api_helpers.c @@ -60,7 +60,9 @@ TALER_TESTING_run_merchant (const char *config_filename, MERCHANT_FAIL (); GNUNET_asprintf (&wget_cmd, - "wget -q -t 1 -T 1 %s" + "wget -q -t 1 -T 1" + "--header='Authentication: ApiKey sandbox'" + " %s" " -o /dev/null -O /dev/null", merchant_url);