MINOR: debug: use the more detailed stream dump in panics

Similarly upon a panic we'd like to have a more detailed dump of a
stream's state, so let's use the full dump function for this now.
This commit is contained in:
Willy Tarreau 2023-09-29 08:39:21 +02:00
parent c185bc4656
commit feff6296a1

View file

@ -325,7 +325,7 @@ void ha_task_dump(struct buffer *buf, const struct task *task, const char *pfx)
s = sc_strm(((struct stconn *)task->context));
if (s)
stream_dump(buf, s, pfx);
strm_dump_to_buffer(buf, s, pfx, HA_ATOMIC_LOAD(&global.anon_key));
#ifdef USE_LUA
hlua = NULL;