You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by bc...@apache.org on 2018/09/05 15:18:54 UTC

[trafficserver] branch master updated: Update to changelog generation tool to not require milestone to be closed

This is an automated email from the ASF dual-hosted git repository.

bcall pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/master by this push:
     new 5ecfb73  Update to changelog generation tool to not require milestone to be closed
5ecfb73 is described below

commit 5ecfb7369aa10c21a81a0b66484cdfc9d9a986e2
Author: Bryan Call <bc...@apache.org>
AuthorDate: Fri Aug 31 11:01:57 2018 -0700

    Update to changelog generation tool to not require milestone to be closed
---
 tools/changelog.pl | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/tools/changelog.pl b/tools/changelog.pl
index 195e030..ba62f09 100755
--- a/tools/changelog.pl
+++ b/tools/changelog.pl
@@ -43,12 +43,10 @@ sub milestone_lookup
   my $milestone_title = shift;
   my $endpoint = "/repos/$owner/$repo/milestones";
 
-  my $params = "state=closed";
-
   my $resp_body;
 
   $curl->setopt(CURLOPT_WRITEDATA, \$resp_body);
-  $curl->setopt(CURLOPT_URL, $url . $endpoint . '?' . $params);
+  $curl->setopt(CURLOPT_URL, $url . $endpoint);
 
   my $retcode = $curl->perform();
   if ($retcode == 0 && $curl->getinfo(CURLINFO_HTTP_CODE) == 200)