Revert "(cqlsh) show partial trace if incomplete after max_trace_wait"

This reverts commit 626ac94cd5.
This commit is contained in:
Aleksey Yeschenko 2015-11-06 17:52:53 +00:00
parent 81e520c54b
commit 2548365a6e
2 changed files with 0 additions and 5 deletions

View File

@ -19,7 +19,6 @@
* (cqlsh) Distinguish negative and positive infinity in output (CASSANDRA-10523)
* (cqlsh) allow custom time_format for COPY TO (CASSANDRA-8970)
* Don't allow startup if the node's rack has changed (CASSANDRA-10242)
* (cqlsh) show partial trace if incomplete after max_trace_wait (CASSANDRA-7645)
* Fix sorting for queries with an IN condition on partition key columns (CASSANDRA-10363)
@ -29,7 +28,6 @@
* Mark nodes as dead even if they've already left (CASSANDRA-10205)
* Update internal python driver used by cqlsh (CASSANDRA-10161, CASSANDRA-10507)
2.1.10
* Bulk Loader API could not tolerate even node failure (CASSANDRA-10347)
* Avoid misleading pushed notifications when multiple nodes

View File

@ -1071,9 +1071,6 @@ class Shell(cmd.Cmd):
if self.tracing_enabled:
if stmt.trace:
print_trace(self, stmt.trace)
elif stmt.trace_id:
self.writeresult("This statement trace may be incomplete", color=RED)
self.show_session(stmt.trace_id)
else:
msg = "Statement trace did not complete within %d seconds" % (self.session.max_trace_wait)
self.writeresult(msg, color=RED)