You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by jm...@apache.org on 2015/06/13 00:19:27 UTC

cassandra git commit: Fix ipv6 parsing on Windows startup

Repository: cassandra
Updated Branches:
  refs/heads/cassandra-2.1 69b7dd327 -> c1702b0b3


Fix ipv6 parsing on Windows startup

Patch by Philip Thompson; reviewed by jmckenzie for CASSANDRA-9567


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/c1702b0b
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/c1702b0b
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/c1702b0b

Branch: refs/heads/cassandra-2.1
Commit: c1702b0b3c24040ed8b402e684a8d0ffd4e4359f
Parents: 69b7dd3
Author: Philip Thompson <pt...@gmail.com>
Authored: Fri Jun 12 18:17:13 2015 -0400
Committer: Josh McKenzie <jo...@datastax.com>
Committed: Fri Jun 12 18:17:13 2015 -0400

----------------------------------------------------------------------
 bin/cassandra.ps1 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/c1702b0b/bin/cassandra.ps1
----------------------------------------------------------------------
diff --git a/bin/cassandra.ps1 b/bin/cassandra.ps1
index 80049ee..41ea7c1 100644
--- a/bin/cassandra.ps1
+++ b/bin/cassandra.ps1
@@ -299,12 +299,12 @@ Function VerifyPortsAreAvailable
     {
         if ($line -match "^listen_address:")
         {
-            $args = $line -Split ":"
+            $args = $line -Split ": "
             $listenAddress = $args[1] -replace " ", ""
         }
         if ($line -match "^rpc_address:")
         {
-            $args = $line -Split ":"
+            $args = $line -Split ": "
             $rpcAddress = $args[1] -replace " ", ""
         }
     }