This file contains 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
from __future__ import absolute_import | |
import logging | |
from kombu.five import Empty | |
from kombu.transport import virtual | |
from kombu.utils import cached_property | |
from kombu.utils.compat import OrderedDict | |
from anyjson import loads, dumps |
This file contains 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
library(RJDBC) | |
# | |
# set up the JDBC connection | |
# configure this for your env | |
# | |
drv <-JDBC("oracle.jdbc.driver.OracleDriver","/Users/grahn/code/jdbc/ojdbc6.jar") | |
conn<-dbConnect(drv,"jdbc:oracle:thin:@zulu.us.oracle.com:1521:orcl","grahn","grahn") | |
# | |
# import the data into a data.frame |
This file contains 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
diff --git a/src/java/main/org/apache/zookeeper/ClientCnxn.java b/src/java/main/org/apache/zookeeper/ClientCnxn.java | |
index 8e449db..854afc6 100644 | |
--- a/src/java/main/org/apache/zookeeper/ClientCnxn.java | |
+++ b/src/java/main/org/apache/zookeeper/ClientCnxn.java | |
@@ -24,11 +24,20 @@ import java.lang.Thread.UncaughtExceptionHandler; | |
import java.net.InetSocketAddress; | |
import java.net.SocketAddress; | |
import java.nio.ByteBuffer; | |
+import java.security.PrivilegedExceptionAction; | |
import java.util.LinkedList; |