This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Nov 23 06:03:13 centos7-image kube-controller-manager: fatal error: concurrent map writes | |
Nov 23 06:03:13 centos7-image kube-controller-manager: goroutine 19396 [running]: | |
Nov 23 06:03:13 centos7-image kube-controller-manager: runtime.throw(0x2c86560, 0x15) | |
Nov 23 06:03:13 centos7-image kube-controller-manager: /usr/local/go/src/runtime/panic.go:547 +0x90 fp=0xc820cbbab0 sp=0xc820cbba98 | |
Nov 23 06:03:13 centos7-image kube-controller-manager: runtime.mapassign1(0x1e59780, 0xc8201892f0, 0xc820cbbbf8, 0xc820cbbc48) | |
Nov 23 06:03:13 centos7-image kube-controller-manager: /usr/local/go/src/runtime/hashmap.go:445 +0xb1 fp=0xc820cbbb58 sp=0xc820cbbab0 | |
Nov 23 06:03:13 centos7-image kube-controller-manager: k8s.io/kubernetes/pkg/client/cache.(*DeltaFIFO).queueActionLocked(0xc8200e0a50, 0x2a67378, 0x4, 0x29fe980, 0xc821752b60, 0x0, 0x0) | |
Nov 23 06:03:13 centos7-image kube-controller-manager: /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/client/cache/delta_fifo.go:314 +0x5d1 fp=0xc820cbbcc0 sp=0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def GetPage(self,url): | |
try: | |
fp = urllib2.urlopen(url) | |
result = fp.read() | |
except Exception, e: | |
self.logger.error( | |
'url %s is unreachable. Exception %s %s' % | |
(url, e.__class__.__name__, e)) | |
result=None | |
fp.close() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if (isset($_GET['url'])) { | |
$url = rawurldecode(trim($_GET['url'])); | |
if (empty($url)) | |
return; | |
if (substr($url, 0, 4) != 'http') | |
$url = "http://{$url}"; | |
require_once 'PHPWebDriver/__init__.php'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Warning! | |
# if you DIY a stage package like this, | |
# you must use the Stage3`s /etc/udev/* | |
# or rm /etc/udev/rules.d/70* | |
# Warning! | |
# last edited by likuku on 2012.03.29 | |
DATE=`date +%Y_%m_%d_%H_%M_%S` | |
ARCH=`uname -m` |