Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Review Request 3478: HostingServices can check if SSH keys are associated
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  16 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Karl Leuschen  
View profile  
 More options Nov 7 2012, 7:54 pm
From: "Karl Leuschen" <k.leusc...@dal.ca>
Date: Thu, 08 Nov 2012 00:54:50 -0000
Local: Wed, Nov 7 2012 7:54 pm
Subject: Review Request 3478: HostingServices can check if SSH keys are associated

-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
http://reviews.reviewboard.org/r/3478/
-----------------------------------------------------------

Review request for Review Board.

Description
-------

Automatic SSH key association should only be performed if the key has not
already been associated. HostingServices that support SSH key association
now have the capability to report if a given key has been associated with a
given repository. Currently, only the GitHub HostingService supports SSH
key association.

Diffs
-----

  reviewboard/hostingsvcs/tests.py 89cf515a92ea60c1b1c4f404663e91241770307d
  reviewboard/hostingsvcs/service.py 63126653c1ceb4133448ceeb1e955057ba3d049e
  reviewboard/hostingsvcs/github.py 5489accddafc98837cd26fc9f5746efb0e052721

Diff: http://reviews.reviewboard.org/r/3478/diff/

Testing
-------

Added unit test for code that checks if a key has been associated. Made slight adjustment to
key association test to ensure tests pass (given that a helper method for SSH key association
API calls was added). Both unit tests pass.

Tested manually with an existing GitHub repository by:
    1) adding RB server's (dev server's) SSH key to list of repository deploy keys. Check confirmed
        key was associated.
    2) adding SSH key to list of user keys. Check confirmed key was associated.
    3) ensuring key NOT associated with repository. Check confirmed key NOT associated.
    4) ensured associate_ssh_key still works as normal for GitHub.

Thanks,

Karl Leuschen


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Christian Hammond  
View profile  
 More options Nov 7 2012, 8:11 pm
From: "Christian Hammond" <chip...@chipx86.com>
Date: Thu, 08 Nov 2012 01:11:41 -0000
Local: Wed, Nov 7 2012 8:11 pm
Subject: Re: Review Request 3478: HostingServices can check if SSH keys are associated

-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
http://reviews.reviewboard.org/r/3478/#review4513
-----------------------------------------------------------

reviewboard/hostingsvcs/github.py
<http://reviews.reviewboard.org/r/3478/#comment7323>

    No blank line.

reviewboard/hostingsvcs/github.py
<http://reviews.reviewboard.org/r/3478/#comment7324>

    Instead of formatting it this way, do:

    ('%suser/keys?access_token=%s'
     % (self.API_URL, ....))

reviewboard/hostingsvcs/github.py
<http://reviews.reviewboard.org/r/3478/#comment7325>

    It'd be nice to change the code to, at the best case, only check one batch of keys. So, get one set, check them. If not found, get the other set, check them.

    Not sure which set to check first. Guess if we're eventually going to upload deploy keys, we should do that.

reviewboard/hostingsvcs/github.py
<http://reviews.reviewboard.org/r/3478/#comment7326>

    this can just be:

    return formatted_key in keys

reviewboard/hostingsvcs/github.py
<http://reviews.reviewboard.org/r/3478/#comment7327>

    Why are we factoring this out? Will more things be calling this?

reviewboard/hostingsvcs/service.py
<http://reviews.reviewboard.org/r/3478/#comment7328>

    Missing period.

reviewboard/hostingsvcs/service.py
<http://reviews.reviewboard.org/r/3478/#comment7329>

    ``key``

reviewboard/hostingsvcs/service.py
<http://reviews.reviewboard.org/r/3478/#comment7330>

    ``repository``

reviewboard/hostingsvcs/tests.py
<http://reviews.reviewboard.org/r/3478/#comment7331>

    One dict per line.

reviewboard/hostingsvcs/tests.py
<http://reviews.reviewboard.org/r/3478/#comment7332>

    Let's precompute this once outside the function.

- Christian Hammond

On Nov. 8, 2012, 12:54 a.m., Karl Leuschen wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Karl Leuschen  
View profile  
 More options Nov 7 2012, 8:40 pm
From: "Karl Leuschen" <k.leusc...@dal.ca>
Date: Thu, 08 Nov 2012 01:40:27 -0000
Local: Wed, Nov 7 2012 8:40 pm
Subject: Re: Review Request 3478: HostingServices can check if SSH keys are associated

-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
http://reviews.reviewboard.org/r/3478/
-----------------------------------------------------------

(Updated Nov. 8, 2012, 1:40 a.m.)

Review request for Review Board.

Changes
-------

Addressed most issues in Christian's review of r1

Description
-------

Automatic SSH key association should only be performed if the key has not
already been associated. HostingServices that support SSH key association
now have the capability to report if a given key has been associated with a
given repository. Currently, only the GitHub HostingService supports SSH
key association.

Diffs (updated)
-----

  reviewboard/hostingsvcs/tests.py 89cf515a92ea60c1b1c4f404663e91241770307d
  reviewboard/hostingsvcs/service.py 63126653c1ceb4133448ceeb1e955057ba3d049e
  reviewboard/hostingsvcs/github.py 5489accddafc98837cd26fc9f5746efb0e052721

Diff: http://reviews.reviewboard.org/r/3478/diff/

Testing
-------

Added unit test for code that checks if a key has been associated. Made slight adjustment to
key association test to ensure tests pass (given that a helper method for SSH key association
API calls was added). Both unit tests pass.

Tested manually with an existing GitHub repository by:
    1) adding RB server's (dev server's) SSH key to list of repository deploy keys. Check confirmed
        key was associated.
    2) adding SSH key to list of user keys. Check confirmed key was associated.
    3) ensuring key NOT associated with repository. Check confirmed key NOT associated.
    4) ensured associate_ssh_key still works as normal for GitHub.

Thanks,

Karl Leuschen


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Karl Leuschen  
View profile  
 More options Nov 7 2012, 8:46 pm
From: "Karl Leuschen" <k.leusc...@dal.ca>
Date: Thu, 08 Nov 2012 01:46:36 -0000
Local: Wed, Nov 7 2012 8:46 pm
Subject: Re: Review Request 3478: HostingServices can check if SSH keys are associated

> On Nov. 8, 2012, 1:11 a.m., Christian Hammond wrote:
> > reviewboard/hostingsvcs/github.py, lines 233-236
> > <http://reviews.reviewboard.org/r/3478/diff/1/?file=23684#file23684lin...>

> >     It'd be nice to change the code to, at the best case, only check one batch of keys. So, get one set, check them. If not found, get the other set, check them.

> >     Not sure which set to check first. Guess if we're eventually going to upload deploy keys, we should do that.

Agreed. Deploy keys will probably be more likely, especially if this feature gets used.

> On Nov. 8, 2012, 1:11 a.m., Christian Hammond wrote:
> > reviewboard/hostingsvcs/github.py, lines 262-263
> > <http://reviews.reviewboard.org/r/3478/diff/1/?file=23684#file23684lin...>

> >     Why are we factoring this out? Will more things be calling this?

No -- only is_ssh_key_associated and associate_ssh_key use it. It might be overkill, but it cleaned up the code a little. It's no trouble to scratch it, so just let me know.

- Karl

-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
http://reviews.reviewboard.org/r/3478/#review4513
-----------------------------------------------------------

On Nov. 8, 2012, 1:40 a.m., Karl Leuschen wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
David Trowbridge  
View profile  
 More options Nov 11 2012, 11:04 pm
From: "David Trowbridge" <trowb...@gmail.com>
Date: Mon, 12 Nov 2012 04:04:24 -0000
Local: Sun, Nov 11 2012 11:04 pm
Subject: Re: Review Request 3478: HostingServices can check if SSH keys are associated

-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
http://reviews.reviewboard.org/r/3478/#review4533
-----------------------------------------------------------

reviewboard/hostingsvcs/github.py
<http://reviews.reviewboard.org/r/3478/#comment7355>

    Can you align the "if" with the "for" in the previous line?

reviewboard/hostingsvcs/service.py
<http://reviews.reviewboard.org/r/3478/#comment7356>

    Why did you change the single backticks to be double backticks?

- David Trowbridge

On Nov. 8, 2012, 1:40 a.m., Karl Leuschen wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Karl Leuschen  
View profile  
 More options Nov 12 2012, 6:30 pm
From: "Karl Leuschen" <k.leusc...@dal.ca>
Date: Mon, 12 Nov 2012 23:30:30 -0000
Local: Mon, Nov 12 2012 6:30 pm
Subject: Re: Review Request 3478: HostingServices can check if SSH keys are associated

> On Nov. 12, 2012, 4:04 a.m., David Trowbridge wrote:
> > reviewboard/hostingsvcs/service.py, line 58
> > <http://reviews.reviewboard.org/r/3478/diff/2/?file=23688#file23688line58>

> >     Why did you change the single backticks to be double backticks?

Christian mentioned the change as part of his feedback on r1. I assumed it was because Sphinx uses reStructuredText for formatting, and I had written the docstring with my brain running in Markdown.

- Karl

-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
http://reviews.reviewboard.org/r/3478/#review4533
-----------------------------------------------------------

On Nov. 8, 2012, 1:40 a.m., Karl Leuschen wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Karl Leuschen  
View profile  
 More options Nov 12 2012, 6:31 pm
From: "Karl Leuschen" <k.leusc...@dal.ca>
Date: Mon, 12 Nov 2012 23:31:24 -0000
Local: Mon, Nov 12 2012 6:31 pm
Subject: Re: Review Request 3478: HostingServices can check if SSH keys are associated

-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
http://reviews.reviewboard.org/r/3478/
-----------------------------------------------------------

(Updated Nov. 12, 2012, 11:31 p.m.)

Review request for Review Board.

Changes
-------

Fix some alignment issues (code style).

Description
-------

Automatic SSH key association should only be performed if the key has not
already been associated. HostingServices that support SSH key association
now have the capability to report if a given key has been associated with a
given repository. Currently, only the GitHub HostingService supports SSH
key association.

Diffs (updated)
-----

  reviewboard/hostingsvcs/github.py 5489accddafc98837cd26fc9f5746efb0e052721
  reviewboard/hostingsvcs/service.py 63126653c1ceb4133448ceeb1e955057ba3d049e
  reviewboard/hostingsvcs/tests.py 89cf515a92ea60c1b1c4f404663e91241770307d

Diff: http://reviews.reviewboard.org/r/3478/diff/

Testing
-------

Added unit test for code that checks if a key has been associated. Made slight adjustment to
key association test to ensure tests pass (given that a helper method for SSH key association
API calls was added). Both unit tests pass.

Tested manually with an existing GitHub repository by:
    1) adding RB server's (dev server's) SSH key to list of repository deploy keys. Check confirmed
        key was associated.
    2) adding SSH key to list of user keys. Check confirmed key was associated.
    3) ensuring key NOT associated with repository. Check confirmed key NOT associated.
    4) ensured associate_ssh_key still works as normal for GitHub.

Thanks,

Karl Leuschen


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
David Trowbridge  
View profile  
 More options Nov 15 2012, 1:56 am
From: "David Trowbridge" <trowb...@gmail.com>
Date: Thu, 15 Nov 2012 06:56:18 -0000
Local: Thurs, Nov 15 2012 1:56 am
Subject: Re: Review Request 3478: HostingServices can check if SSH keys are associated

> On Nov. 12, 2012, 4:04 a.m., David Trowbridge wrote:
> > reviewboard/hostingsvcs/service.py, line 58
> > <http://reviews.reviewboard.org/r/3478/diff/2/?file=23688#file23688line58>

> >     Why did you change the single backticks to be double backticks?

> Karl Leuschen wrote:
>     Christian mentioned the change as part of his feedback on r1. I assumed it was because Sphinx uses reStructuredText for formatting, and I had written the docstring with my brain running in Markdown.

Cool, just wondering.

- David

-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
http://reviews.reviewboard.org/r/3478/#review4533
-----------------------------------------------------------

On Nov. 12, 2012, 11:31 p.m., Karl Leuschen wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Karl Leuschen  
View profile  
 More options Nov 15 2012, 10:53 pm
From: "Karl Leuschen" <k.leusc...@dal.ca>
Date: Fri, 16 Nov 2012 03:53:46 -0000
Local: Thurs, Nov 15 2012 10:53 pm
Subject: Re: Review Request 3478: HostingServices can check if SSH keys are associated

-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
http://reviews.reviewboard.org/r/3478/
-----------------------------------------------------------

(Updated Nov. 16, 2012, 3:53 a.m.)

Review request for Review Board.

Changes
-------

Address issues in review of r3.

Description
-------

Automatic SSH key association should only be performed if the key has not
already been associated. HostingServices that support SSH key association
now have the capability to report if a given key has been associated with a
given repository. Currently, only the GitHub HostingService supports SSH
key association.

Diffs (updated)
-----

  reviewboard/hostingsvcs/github.py 5489accddafc98837cd26fc9f5746efb0e052721
  reviewboard/hostingsvcs/service.py 63126653c1ceb4133448ceeb1e955057ba3d049e
  reviewboard/hostingsvcs/tests.py 89cf515a92ea60c1b1c4f404663e91241770307d

Diff: http://reviews.reviewboard.org/r/3478/diff/

Testing
-------

Added unit test for code that checks if a key has been associated. Made slight adjustment to
key association test to ensure tests pass (given that a helper method for SSH key association
API calls was added). Both unit tests pass.

Tested manually with an existing GitHub repository by:
    1) adding RB server's (dev server's) SSH key to list of repository deploy keys. Check confirmed
        key was associated.
    2) adding SSH key to list of user keys. Check confirmed key was associated.
    3) ensuring key NOT associated with repository. Check confirmed key NOT associated.
    4) ensured associate_ssh_key still works as normal for GitHub.

Thanks,

Karl Leuschen


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Christian Hammond  
View profile  
 More options Nov 15 2012, 2:29 am
From: "Christian Hammond" <chip...@chipx86.com>
Date: Thu, 15 Nov 2012 07:29:16 -0000
Local: Thurs, Nov 15 2012 2:29 am
Subject: Re: Review Request 3478: HostingServices can check if SSH keys are associated

-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
http://reviews.reviewboard.org/r/3478/#review4544
-----------------------------------------------------------

reviewboard/hostingsvcs/github.py
<http://reviews.reviewboard.org/r/3478/#comment7377>

    Just so the entire function doesn't have to be indented, it'd be nice to just do:

    if not key:
        return False

    ... # rest of code

reviewboard/hostingsvcs/github.py
<http://reviews.reviewboard.org/r/3478/#comment7378>

    I know this has gone back and forth a couple times, but really, multi-line like this should be:

    deploy_keys = [
        item['key']
        for ...
        if ...
    ]

    Same below.

reviewboard/hostingsvcs/tests.py
<http://reviews.reviewboard.org/r/3478/#comment7379>

    Space after :

- Christian Hammond

On Nov. 12, 2012, 11:31 p.m., Karl Leuschen wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
John Sintal  
View profile  
 More options Nov 20 2012, 12:04 am
From: "John Sintal" <john.sin...@gmail.com>
Date: Tue, 20 Nov 2012 05:04:32 -0000
Local: Tues, Nov 20 2012 12:04 am
Subject: Re: Review Request 3478: HostingServices can check if SSH keys are associated

-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
http://reviews.reviewboard.org/r/3478/#review4578
-----------------------------------------------------------

reviewboard/hostingsvcs/github.py
<http://reviews.reviewboard.org/r/3478/#comment7472>

    Continuation line indentation is not a multiple of four

reviewboard/hostingsvcs/github.py
<http://reviews.reviewboard.org/r/3478/#comment7473>

    line too long (80 > 79 characters)

reviewboard/hostingsvcs/github.py
<http://reviews.reviewboard.org/r/3478/#comment7474>

    continuation line does not distinguish itself from next logical line. So, just make one indent here.

reviewboard/hostingsvcs/tests.py
<http://reviews.reviewboard.org/r/3478/#comment7475>

    line too long

- John Sintal

On Nov. 16, 2012, 3:53 a.m., Karl Leuschen wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Karl Leuschen  
View profile  
 More options Nov 21 2012, 4:48 pm
From: "Karl Leuschen" <k.leusc...@dal.ca>
Date: Wed, 21 Nov 2012 21:48:20 -0000
Local: Wed, Nov 21 2012 4:48 pm
Subject: Re: Review Request 3478: HostingServices can check if SSH keys are associated

> On Nov. 20, 2012, 5:04 a.m., John Sintal wrote:

Most of the issues you pointed out are on lines this patch doesn't modify, so I'll do a pass on the hostingsvcs app in another review request to clean up the PEP8 violations. Thanks for the heads up!

> On Nov. 20, 2012, 5:04 a.m., John Sintal wrote:
> > reviewboard/hostingsvcs/github.py, line 12
> > <http://reviews.reviewboard.org/r/3478/diff/4/?file=23764#file23764line12>

> >     Continuation line indentation is not a multiple of four

This is shows up occasionally in the RB codebase -- this particular alignment is (slightly) more readable and trumps the PEP8 complaint in this case.

- Karl

-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
http://reviews.reviewboard.org/r/3478/#review4578
-----------------------------------------------------------

On Nov. 16, 2012, 3:53 a.m., Karl Leuschen wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Christian Hammond  
View profile  
 More options Nov 23 2012, 3:36 am
From: "Christian Hammond" <chip...@chipx86.com>
Date: Fri, 23 Nov 2012 08:36:51 -0000
Local: Fri, Nov 23 2012 3:36 am
Subject: Re: Review Request 3478: HostingServices can check if SSH keys are associated

-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
http://reviews.reviewboard.org/r/3478/#review4608
-----------------------------------------------------------

I think after this one last set of changes, which are tiny, we'll be ready to ship it :D

reviewboard/hostingsvcs/github.py
<http://reviews.reviewboard.org/r/3478/#comment7544>

    This can be simplified to:

    for url in (url_deploy_keys, url_user_keys):
        keys_rsp = self._key_association_api_call(...)

        blah blah

        if formatted_key in ...
            return True

    Also, I'd prefer that "url" and "rsp" be suffixes, not prefixes.

reviewboard/hostingsvcs/github.py
<http://reviews.reviewboard.org/r/3478/#comment7545>

    *args, **kwargs. We shouldn't stray from the naming convention.

reviewboard/hostingsvcs/github.py
<http://reviews.reviewboard.org/r/3478/#comment7546>

    Trailing period.

- Christian Hammond

On Nov. 16, 2012, 3:53 a.m., Karl Leuschen wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Karl Leuschen  
View profile  
 More options Nov 23 2012, 11:22 am
From: "Karl Leuschen" <k.leusc...@dal.ca>
Date: Fri, 23 Nov 2012 16:22:05 -0000
Local: Fri, Nov 23 2012 11:22 am
Subject: Re: Review Request 3478: HostingServices can check if SSH keys are associated

-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
http://reviews.reviewboard.org/r/3478/
-----------------------------------------------------------

(Updated Nov. 23, 2012, 4:22 p.m.)

Review request for Review Board.

Changes
-------

Fix style issues in r4 and test.

Description
-------

Automatic SSH key association should only be performed if the key has not
already been associated. HostingServices that support SSH key association
now have the capability to report if a given key has been associated with a
given repository. Currently, only the GitHub HostingService supports SSH
key association.

Diffs (updated)
-----

  reviewboard/hostingsvcs/github.py 5489accddafc98837cd26fc9f5746efb0e052721
  reviewboard/hostingsvcs/service.py 63126653c1ceb4133448ceeb1e955057ba3d049e
  reviewboard/hostingsvcs/tests.py 89cf515a92ea60c1b1c4f404663e91241770307d

Diff: http://reviews.reviewboard.org/r/3478/diff/

Testing
-------

Added unit test for code that checks if a key has been associated. Made slight adjustment to
key association test to ensure tests pass (given that a helper method for SSH key association
API calls was added). Both unit tests pass.

Tested manually with an existing GitHub repository by:
    1) adding RB server's (dev server's) SSH key to list of repository deploy keys. Check confirmed
        key was associated.
    2) adding SSH key to list of user keys. Check confirmed key was associated.
    3) ensuring key NOT associated with repository. Check confirmed key NOT associated.
    4) ensured associate_ssh_key still works as normal for GitHub.

Thanks,

Karl Leuschen


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Karl Leuschen  
View profile  
 More options Nov 23 2012, 11:22 am
From: "Karl Leuschen" <k.leusc...@dal.ca>
Date: Fri, 23 Nov 2012 16:22:10 -0000
Local: Fri, Nov 23 2012 11:22 am
Subject: Re: Review Request 3478: HostingServices can check if SSH keys are associated

Good tip -- thanks!

- Karl

-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
http://reviews.reviewboard.org/r/3478/#review4608
-----------------------------------------------------------

On Nov. 23, 2012, 4:22 p.m., Karl Leuschen wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
David Trowbridge  
View profile  
 More options Nov 24 2012, 1:15 am
From: "David Trowbridge" <trowb...@gmail.com>
Date: Sat, 24 Nov 2012 06:15:14 -0000
Local: Sat, Nov 24 2012 1:15 am
Subject: Re: Review Request 3478: HostingServices can check if SSH keys are associated

-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
http://reviews.reviewboard.org/r/3478/#review4621
-----------------------------------------------------------

Ship it!

Ship It!

- David Trowbridge

On Nov. 23, 2012, 4:22 p.m., Karl Leuschen wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »