There was a problem with a Velocity script
Pagesports/wbkb/2014-15/boxscores/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 395 milliseconds ago. The last packet sent successfully to the server was 5 milliseconds ago. at wokn3at39pz0jdc3sports/wbkb/2014-15/boxscores/default-decorator[line 29, column 18]
Page source:
1: #set ($pageContainer    = "container-xxl")
2: #set ($pageClass        = "internal-page")
3: #set ($showBookmark     = true)
4: #set ($landing          = false)
5: 
6: #if ($request.getAttribute("pageContainer")) #set ($pageContainer = $request.getAttribute("pageContainer")) #end
7: #if ($request.getAttribute("pageClass")) #set ($pageClass = $request.getAttribute("pageClass")) #end
8: #if ($page.url.startsWith("/landing/")) #set ($pageClass = "${pageClass} site-home") #end
9: #if ($request.getAttribute("showBookmark") == false) #set ($showBookmark = false) #end
10: #if ($request.getAttribute("landing"))
11:     #set ($landing = $request.getAttribute("landing"))
12:     #set ($landing = $Boolean.parseBoolean($landing))
13: #end
14: 
15: ## PICK UP OPTIONS
16: $website.include("options")
17: #set ($options = $request.getAttribute("options"))
18: 
19: #set ($language = "en")
20: #if ($options.get("site_lang") != "en")
21:     #set ($language = $options.get("site_lang"))
22: #end
23: 
24: <!doctype html>
25: <html lang="${language}" class="${pageClass}" data-theme-2="knockout">
26:     <head>
27:         $!head
28:         $!request.setAttribute("pageObj", $page)
29:         $website.include("inc-head")
30:         <link rel="stylesheet" href="/theme.css" type="text/css" />
31:         <link rel="stylesheet" href="/site.css" type="text/css" />
32:     </head>  
33:     <body>
34:         
35:         <a href="#component-navbar-offcanvas" class="visually-hidden-focusable">Skip to navigation</a>
36:         <a href="#site-main" class="visually-hidden-focusable">Skip to content</a>
37:         <a href="#site-footer" class="visually-hidden-focusable">Skip to footer</a>
38: 
39:         $website.include("header")
40: 
41:         #if (!$landing && ($website.ads.isAdvertisingEnabled('INDEX_PAGES') || $website.ads.isMediaAdsEnabled()))
42:         <!-- 728x90/970x90/970x250/300x250/320x50 -->
43:         <div id="waldo-tag-banner"></div>
44:         #end
45:         
46:         <main id="site-main">
47:             <div class="${pageContainer} my-md-5">
48:                 $body 
49:                 #if ($showBookmark) $website.include("share-buttons") #end
50:                 $wiki
51:             </div>
52:         </main>
53: 
54:         #if ($website.ads.isAdvertisingEnabled('INDEX_PAGES') || $website.ads.isMediaAdsEnabled())
55:         <!-- 728x90/970x90/970x250/300x250/320x50 -->
56:         <div id="waldo-tag-bottom-banner"></div>
57:         #end
58: 
59:         $website.include("footer")
60: 
61:         #if ($website.ads.isAdvertisingEnabled('INDEX_PAGES') || ($website.ads.isMediaAdsEnabled() && $website.ads.isMediaAdditionalAdsEnabled()))
62:         <!-- Sticky Footer --><!-- 728x90/320x50 -->
63:             <div id="waldo-tag-sticky-footer"></div>
64:         #end
65: 
66:         $!wiki.su
67:         $website.usage
68:         $website.include("dropoff-scripts")
69:         $request.setAttribute("icl-animate-on-scroll-script", true)
70:     </body>
71: </html>