You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
980 B

  1. From 815d7d5c348575181874429b93b0ebdb0cf873c2 Mon Sep 17 00:00:00 2001
  2. From: Olivier Doucet <webmaster@ajeux.com>
  3. Date: Mon, 8 Sep 2014 11:23:00 +0200
  4. Subject: [PATCH 02/13] MINOR: stats: fix minor typo fix in
  5. stats_dump_errors_to_buffer()
  6. Remove the space before the colon to match the format used in the frontend.
  7. (cherry picked from commit 08afdcb47bc39c071787f8fc2066776e1c5e8607)
  8. ---
  9. src/dumpstats.c | 2 +-
  10. 1 file changed, 1 insertion(+), 1 deletion(-)
  11. diff --git a/src/dumpstats.c b/src/dumpstats.c
  12. index 5365042..09bc7f6 100644
  13. --- a/src/dumpstats.c
  14. +++ b/src/dumpstats.c
  15. @@ -6045,7 +6045,7 @@ static int stats_dump_errors_to_buffer(struct stream_interface *si)
  16. break;
  17. case 1:
  18. chunk_appendf(&trash,
  19. - " backend %s (#%d) : invalid response\n"
  20. + " backend %s (#%d): invalid response\n"
  21. " frontend %s (#%d)",
  22. appctx->ctx.errors.px->id, appctx->ctx.errors.px->uuid,
  23. es->oe->id, es->oe->uuid);
  24. --
  25. 1.8.5.5