Skip to content

Commit

Permalink
Merge pull request #5 from oleg-nenashev/JENKINS-50571
Browse files Browse the repository at this point in the history
[JENKINS-50571] - Make JCloudsArtifactManager fields non-final to allow configuration via System Groovy Hooks.
  • Loading branch information
jglick committed Apr 9, 2018
2 parents 3a5d4d3 + c423b4f commit 721f991
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -78,10 +78,10 @@ class JCloudsArtifactManager extends ArtifactManager implements StashManager.Sta

private static final Logger LOGGER = Logger.getLogger(JCloudsArtifactManager.class.getName());

private static final String PROVIDER = System.getProperty("jclouds.provider", "aws-s3");
private static String PROVIDER = System.getProperty("jclouds.provider", "aws-s3");

private static final String BLOB_CONTAINER = System.getenv("S3_BUCKET");
private static final String PREFIX = System.getenv("S3_DIR");
private static String BLOB_CONTAINER = System.getenv("S3_BUCKET");
private static String PREFIX = System.getenv("S3_DIR");

private transient String key; // e.g. myorg/myrepo/master#123

Expand Down

0 comments on commit 721f991

Please sign in to comment.