From 158ccca896754ce1dbb7885aba3212a852a7bed9 Mon Sep 17 00:00:00 2001 From: Birte Kristina Friesel Date: Wed, 4 Dec 2024 17:43:47 +0100 Subject: Add a separate error message for gateway timeouts --- lib/Travelynx/Controller/Traveling.pm | 7 +++++++ templates/gateway_timeout.html.ep | 22 ++++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 templates/gateway_timeout.html.ep diff --git a/lib/Travelynx/Controller/Traveling.pm b/lib/Travelynx/Controller/Traveling.pm index 0a94a1e..101ae11 100755 --- a/lib/Travelynx/Controller/Traveling.pm +++ b/lib/Travelynx/Controller/Traveling.pm @@ -1136,6 +1136,13 @@ sub station { status => 502 ); } + elsif ( $err =~ m{timeout}i ) { + $self->render( + 'gateway_timeout', + message => $err, + status => 504 + ); + } else { $self->render( 'exception', diff --git a/templates/gateway_timeout.html.ep b/templates/gateway_timeout.html.ep new file mode 100644 index 0000000..86e844d --- /dev/null +++ b/templates/gateway_timeout.html.ep @@ -0,0 +1,22 @@ +
+
+
+
+ 504 Gateway Timeout +

+ Das von travelynx genutzte Backend hat nicht rechtzeitig reagiert. + travelynx hat keine Möglichkeiten, diese Situation zu beheben. + Vrsuche es in ein paar Sekunden bis Minuten noch einmal. +

+
+
+
+
+
+
+

Details:

+

+ %= $message +

+
+
-- cgit v1.2.3