Skip to content

Commit

Permalink
fixed bug
Browse files Browse the repository at this point in the history
  • Loading branch information
pecollet committed Mar 15, 2024
1 parent 1c82009 commit a817763
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.neo4j</groupId>
<artifactId>aws-ec2-asg-discovery</artifactId>
<version>0.4.0</version>
<version>0.4.1</version>

<properties>
<maven.compiler.source>17</maven.compiler.source>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/cs/neo4j/Ec2DiscoveryResolver.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ public String getName() {

@Override
public void init(Type type, Configuration configuration, LogProvider logProvider) {
log.info("Init of discovery plugin "+this.NAME);
this.type = type;
this.log = logProvider.getLog(getClass());
this.configuration = configuration;
log.info("Init of discovery plugin "+this.NAME);

this.asgName = configuration.get(Ec2DiscoverySettings.asg_name);
this.awsRegion = configuration.get(Ec2DiscoverySettings.aws_region);
Expand Down

0 comments on commit a817763

Please sign in to comment.