There was a problem with a Velocity script
Pagesports/mvball/2019-20p/teams/default-decorator
ErrorInvocation of method 'include' in class com.prestosports.render.ContentEngineInvoker threw exception java.lang.RuntimeException: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet successfully received from the server was 140,865 milliseconds ago. The last packet sent successfully to the server was 0 milliseconds ago. at 6sh8erx7dy547416sports/mvball/2019-20p/teams/default-decorator[line 19, column 10]
Page source:
1: ## DO NOT REMOVE, THIS IS NEEDED FOR FETCH REQUESTS
2: #if ($request.getParameter("decorator") == "none")
3:     $!body
4:     #stop
5: #end
6: 
7: #set ($showBookmark     = true)
8: #set ($pageClass        = "")
9: #set ($pageContainer    = "container p-3 border shadow-sm bg-white")
10: 
11: ## ALLOW SUB-SECTIONS WITHIN THE SITE TO DEFINE UNIQUE SETUPS
12: $website.include("micro-setup")
13: 
14: #set ($showBookmark  = $request.getAttribute("showBookmark"))
15: #set ($pageClass     = $request.getAttribute("pageClass"))
16: #set ($pageContainer = $request.getAttribute("pageContainer"))
17: 
18: ## PICK UP OPTIONS
19: $website.include("options")
20: #set ($options = $request.getAttribute("options"))
21: 
22: #set ($language = "en")
23: #if ($options.get("site_lang") != "en")
24:     #set ($language = $options.get("site_lang"))
25: #end
26: 
27: #set ($pageType = "internal-page")
28: #if ($request.getAttribute("isLandingPage") == true)
29:     #set ($pageType = "landing")
30: #end
31: 
32: <!DOCTYPE html>
33: <html lang="$language" class="${pageType} ${pageClass}" data-theme-2="usports">
34: <head>
35:     $!request.setAttribute("pageObj", $page)
36:     $website.include("inc-head")
37:     $!head
38:     <link rel="stylesheet" type="text/css" href="/theme.css" />
39:     <link rel="stylesheet" href="/site.css" type="text/css" />
40:     
41:     #if ($website.profile.siteLogo.getUrl().length() > 0)
42:         <style>
43:             :root { --site-logo-url: url(${website.profile.siteLogo.getUrl()}); }
44:         </style>
45:     #end
46: </head>
47: <body _="on htmx:load trigger dom_updated">
48:     <a href="#site-navigation" class="visually-hidden-focusable">Skip to navigation</a>
49:     <a href="#site-main" class="visually-hidden-focusable">Skip to content</a>
50:     <a href="#site-footer" class="visually-hidden-focusable">Skip to footer</a>
51:     
52:     <div class="page">
53:         $website.include("header")
54:         
55:         <main id="site-main" class="site-main" role="main">
56:             <div class="$pageContainer">
57:                 $!body
58:                 
59:                 #if ($wiki.valid())
60:                     <div class="d-flex">$wiki</div>
61:                 #end
62:             </div>
63:         </main>
64:         
65:         $website.include("footer")
66:     </div>
67:     
68:     $website.usage
69:     $website.include("dropoff-scripts")
70:     
71:     ## ADDONS
72:     <script src="https://theme-assets.prestosports.com/theme-assets/usports-premium/assets/js/addons.js"></script>
73: </body>
74: </html>