From issues-return-165676-archive-asf-public=cust-asf.ponee.io@flink.apache.org Tue May 8 14:46:22 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id ED06318063B for ; Tue, 8 May 2018 14:46:21 +0200 (CEST) Received: (qmail 85862 invoked by uid 500); 8 May 2018 12:46:21 -0000 Mailing-List: contact issues-help@flink.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flink.apache.org Delivered-To: mailing list issues@flink.apache.org Received: (qmail 85853 invoked by uid 99); 8 May 2018 12:46:21 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 May 2018 12:46:21 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id EA83AE09F4; Tue, 8 May 2018 12:46:20 +0000 (UTC) From: ctamisier To: issues@flink.apache.org Reply-To: issues@flink.apache.org References: In-Reply-To: Subject: [GitHub] flink pull request #5964: [FLINK-8655] [Cassandra Connector] add keyspace in... Content-Type: text/plain Message-Id: <20180508124620.EA83AE09F4@git1-us-west.apache.org> Date: Tue, 8 May 2018 12:46:20 +0000 (UTC) Github user ctamisier commented on a diff in the pull request: https://github.com/apache/flink/pull/5964#discussion_r186714037 --- Diff: flink-connectors/flink-connector-cassandra/src/main/java/org/apache/flink/streaming/connectors/cassandra/CassandraSinkBase.java --- @@ -85,7 +85,7 @@ public void onFailure(Throwable t) { } }; this.cluster = builder.getCluster(); - this.session = cluster.connect(); + this.session = cluster.connect(configuration.getString("keyspace", null)); --- End diff -- indeed! ---