Skip to content

Commit

Permalink
[backend] refact
Browse files Browse the repository at this point in the history
  • Loading branch information
savacano28 committed Sep 10, 2024
1 parent 2d9bf6b commit dc4c7b5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions openbas-api/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ logging.logback.rollingpolicy.max-history=7


# Non-system service account credentials for OpenBAS agent
agent.non-system-user=<nonsystemuser>
agent.non-system-pwd=<ChangeMe>
openbas.agent.non-system-user=<nonsystemuser>
openbas.agent.non-system-pwd=<ChangeMe>

#############
# EXECUTORS #
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
@Data
public class OpenBASAgentConfig {

@JsonProperty("non_system_user")
@JsonProperty("non-system-user")
private String nonSystemUser;

@JsonProperty("non_system_pwd")
@JsonProperty("non-system-pwd")
private String nonSystemPwd;

}

0 comments on commit dc4c7b5

Please sign in to comment.