You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by ne...@apache.org on 2017/01/23 19:13:42 UTC

[1/2] incubator-trafficcontrol git commit: fix the issue failed to delete sslkeys by TrafficOps API

Repository: incubator-trafficcontrol
Updated Branches:
  refs/heads/master a54db70d9 -> f8cd76b23


fix the issue failed to delete sslkeys by TrafficOps API


Project: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/commit/a3c050b7
Tree: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/tree/a3c050b7
Diff: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/diff/a3c050b7

Branch: refs/heads/master
Commit: a3c050b7f81aa5315e92ceb2cbe95e82acd56827
Parents: a54db70
Author: pengyuewu <pe...@cisco.com>
Authored: Thu Jan 12 18:17:42 2017 +0800
Committer: David Neuman <da...@gmail.com>
Committed: Mon Jan 23 12:13:18 2017 -0700

----------------------------------------------------------------------
 traffic_ops/app/lib/Connection/RiakAdapter.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/blob/a3c050b7/traffic_ops/app/lib/Connection/RiakAdapter.pm
----------------------------------------------------------------------
diff --git a/traffic_ops/app/lib/Connection/RiakAdapter.pm b/traffic_ops/app/lib/Connection/RiakAdapter.pm
index 8a5afb0..474bc69 100755
--- a/traffic_ops/app/lib/Connection/RiakAdapter.pm
+++ b/traffic_ops/app/lib/Connection/RiakAdapter.pm
@@ -108,7 +108,7 @@ sub delete {
 	my $key     = shift || confess("Supply a key");
 	my $key_uri = $self->get_key_uri( $bucket, $key );
 	my $key_ctx = $self->get_url($key_uri);
-	return $ua->delete( $self->get_url($key_ctx) );
+	return $ua->delete( $self->$key_ctx );
 }
 
 sub get {


[2/2] incubator-trafficcontrol git commit: This closes #190

Posted by ne...@apache.org.
This closes #190


Project: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/commit/f8cd76b2
Tree: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/tree/f8cd76b2
Diff: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/diff/f8cd76b2

Branch: refs/heads/master
Commit: f8cd76b23e280df926fe2121ca2571eeac1e9191
Parents: a3c050b
Author: David Neuman <da...@gmail.com>
Authored: Mon Jan 23 12:13:35 2017 -0700
Committer: David Neuman <da...@gmail.com>
Committed: Mon Jan 23 12:13:35 2017 -0700

----------------------------------------------------------------------

----------------------------------------------------------------------