Skip to content

Commit cbf0fd0

Browse files
ninja-fix – ccm add due to missing parenthesis in cluster_cmds.py
1 parent a5b40b2 commit cbf0fd0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ccmlib/cmds/cluster_cmds.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ def validate(self, parser, options, args):
259259

260260
def run(self):
261261
try:
262-
node = self.cluster.getNodeClass(self.name, self.cluster, self.options.bootstrap, self.thrift, self.storage, self.jmx_port, self.remote_debug_port, self.initial_token, binary_interface=self.binary)
262+
node = self.cluster.getNodeClass()(self.name, self.cluster, self.options.bootstrap, self.thrift, self.storage, self.jmx_port, self.remote_debug_port, self.initial_token, binary_interface=self.binary)
263263
self.cluster.add(node, self.options.is_seed, self.options.data_center)
264264
except common.ArgumentError as e:
265265
print_(str(e), file=sys.stderr)

0 commit comments

Comments
 (0)