Skip to content

Commit 2c76adf

Browse files
committedNov 15, 2016
timeout option fix
1 parent e7ee75a commit 2c76adf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎cassandra-fdw/cassandra_provider.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def init_connection(self, options, columns):
7474
if ISDEBUG:
7575
logger.log("connected in {0} ms".format(int((end_time - start_time) * 1000)))
7676
if timeout is not None:
77-
self.session.default_timeout = timeout
77+
self.session.default_timeout = float(timeout)
7878

7979
def prepare_insert_stmt(self):
8080
insert_stmt_str = u"INSERT INTO {0}.{1} ({2}) VALUES ({3})".format(

0 commit comments

Comments
 (0)
Please sign in to comment.