Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 92B00200C0F for ; Thu, 2 Feb 2017 21:24:07 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 9149A160B57; Thu, 2 Feb 2017 20:24:07 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id DC261160B44 for ; Thu, 2 Feb 2017 21:24:06 +0100 (CET) Received: (qmail 92786 invoked by uid 500); 2 Feb 2017 20:24:06 -0000 Mailing-List: contact issues-help@jmeter.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: issues@jmeter.apache.org Delivered-To: mailing list issues@jmeter.apache.org Received: (qmail 92775 invoked by uid 99); 2 Feb 2017 20:24:06 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Feb 2017 20:24:06 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id 820221A02E3 for ; Thu, 2 Feb 2017 20:24:05 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -1.999 X-Spam-Level: X-Spam-Status: No, score=-1.999 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-2.999] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id 0vy4kVA_tmPu for ; Thu, 2 Feb 2017 20:24:01 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with ESMTP id D02E65F5C4 for ; Thu, 2 Feb 2017 20:24:00 +0000 (UTC) Received: from asf-bz1-us-mid.priv.apache.org (nat1-us-mid.apache.org [23.253.172.122]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTPS id 1318EE01A7 for ; Thu, 2 Feb 2017 20:24:00 +0000 (UTC) Received: by asf-bz1-us-mid.priv.apache.org (ASF Mail Server at asf-bz1-us-mid.priv.apache.org, from userid 33) id CA41C60DA9; Thu, 2 Feb 2017 20:23:58 +0000 (UTC) From: bugzilla@apache.org To: issues@jmeter.apache.org Subject: [Bug 60684] New: Thread Group: Validate ended prematurely by Scheduler Date: Thu, 02 Feb 2017 20:23:58 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: JMeter X-Bugzilla-Component: Main X-Bugzilla-Version: 3.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: p.mouawad@ubik-ingenierie.com X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: issues@jmeter.apache.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bz.apache.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 archived-at: Thu, 02 Feb 2017 20:24:07 -0000 https://bz.apache.org/bugzilla/show_bug.cgi?id=3D60684 Bug ID: 60684 Summary: Thread Group: Validate ended prematurely by Scheduler Product: JMeter Version: 3.0 Hardware: All OS: All Status: NEW Severity: normal Priority: P2 Component: Main Assignee: issues@jmeter.apache.org Reporter: p.mouawad@ubik-ingenierie.com Target Milestone: --- Message on user mailing list: http://mail-archives.apache.org/mod_mbox/jmeter-user/201701.mbox/%3CCABNKX4= 9MpzUW6kMfD%2BQKiQtEbWC-Va_Gth7vWfcueZ8vQv_tWg%40mail.gmail.com%3E Hi all, I have a thread group that has about 10-12 consecutive samplers, and was using the Validate option to debug through these. I noticed that not all the samplers were being invoked, and in the jmeter.log I can see the following line: 2017/01/30 13:41:54 INFO - jmeter.threads.JMeterThread: Stopping because end time detected by thread: Sports 1-1 Does this mean that the Validate feature is still subject to Scheduler duration? Currently, I use the following: Threads =3D ${__P(user.sports.usercount,0)} Duration (Scheduler enabled) =3D ${__P(user.sports.duration)} Both parameter options are not specified, i.e. they will take default values of 0 and 1 respectively. I suspect that since I haven't explicitly set a second default-value parameter to __P() function for the Duration setting, it's setting it to 1 as per the __P() docs, but I was expecting Validate would ignore duration/endtime setting as it does for Threads. As an aside, I do have a patch ready for this, which is adding the line tg.setScheduler(false); to TreeClonerForValidation.java Thanks --=20 You are receiving this mail because: You are the assignee for the bug.=