Skip to content

Commit

Permalink
Merge pull request #13 from grove693/feature/refactorings
Browse files Browse the repository at this point in the history
Defaults for Config Object
  • Loading branch information
ilvalerione authored Oct 13, 2024
2 parents 96bc73a + b701ddc commit af04a22
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>dev.inspector</groupId>
<artifactId>agent</artifactId>
<version>0.1.4</version>
<version>0.1.5</version>

<name>agent</name>

Expand Down
4 changes: 3 additions & 1 deletion src/main/java/dev/inspector/agent/model/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@ public class Config {
private Boolean enabled = true;

private Integer maxEntries = 100;
private String version = "1.9.10";
private String version;

public Config(String ingestionKey){
this.ingestionKey = ingestionKey;
this.version = "0.0.5";
this.url = "https://ingest.inspector.dev";
}


Expand Down

0 comments on commit af04a22

Please sign in to comment.