Fix: don't perform an automatic session rotation in snapshot mode
[lttng-tools.git] / src / bin / lttng-sessiond / cmd.c
index 10a6de39168c73d68766f92f0b8a3003707b564c..f6c44d3be16e63096e856874344dd39e11b4d348 100644 (file)
@@ -3171,7 +3171,11 @@ int cmd_destroy_session(struct ltt_session *session,
 
        if (session->most_recent_chunk_id.is_set &&
                        session->most_recent_chunk_id.value != 0 &&
-                       session->current_trace_chunk) {
+                       session->current_trace_chunk && session->output_traces) {
+               /*
+                * Perform a last rotation on destruction if rotations have
+                * occurred during the session's lifetime.
+                */
                ret = cmd_rotate_session(session, NULL);
                if (ret != LTTNG_OK) {
                        ERR("Failed to perform an implicit rotation as part of the destruction of session \"%s\": %s",
This page took 0.024201 seconds and 4 git commands to generate.