Skip to content

Commit f06f764

Browse files
authored
Merge pull request #16 from awslabs/master
Merging AWSLabs changes back to Jenkins copy.
2 parents ed6001b + 9d31b34 commit f06f764

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/main/java/com/amazonaws/codedeploy/AWSClients.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,8 @@ public static AWSClients fromBasicCredentials(String region, String awsAccessKey
9090
/**
9191
* Via the default provider chain (i.e., global keys for this Jenkins instance), return the account ID for the
9292
* currently authenticated user.
93+
* @param proxyHost hostname of the proxy to use (if any)
94+
* @param proxyPort port of the proxy to use (if any)
9395
* @return 12-digit account id
9496
*/
9597
public static String getAccountId(String proxyHost, int proxyPort) {

src/main/java/com/amazonaws/codedeploy/AWSCodeDeployPublisher.java

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
/**
7171
* The AWS CodeDeploy Publisher is a post-build plugin that adds the ability to start a new CodeDeploy deployment
7272
* with the project's workspace as the application revision.
73-
* <p/>
73+
*
7474
* To configure, users must create an IAM role that allows "S3" and "CodeDeploy" actions and must be assumable by
7575
* the globally configured keys. This allows the plugin to get temporary credentials instead of requiring permanent
7676
* credentials to be configured for each project.
@@ -488,15 +488,13 @@ public DescriptorImpl getDescriptor() {
488488
}
489489

490490
public BuildStepMonitor getRequiredMonitorService() {
491-
492-
return BuildStepMonitor.STEP;
491+
return BuildStepMonitor.NONE;
493492
}
494493

495494
/**
496495
* Descriptor for {@link AWSCodeDeployPublisher}. Used as a singleton.
497496
* The class is marked as public so that it can be accessed from views.
498-
* <p/>
499-
* <p/>
497+
*
500498
* See <tt>src/main/resources/com/amazonaws/codedeploy/AWSCodeDeployPublisher/*.jelly</tt>
501499
* for the actual HTML fragment for the configuration screen.
502500
*/

0 commit comments

Comments
 (0)