Skip to content

Commit

Permalink
config for solo
Browse files Browse the repository at this point in the history
  • Loading branch information
hendrikebbers committed Jul 5, 2024
1 parent 206e17c commit e01d2ee
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ jobs:
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: cd /root/solo/ && ./preAction.sh && cd $OLDPWD && export spring_profiles_active=solo && ./mvnw verify
run: cd /root/solo/ && ./preAction.sh && cd $OLDPWD && export spring_profiles_active=solo && env && ./mvnw verify
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ public HederaAutoConfiguration(final HederaProperties properties) {
if(properties.getNetwork() == null) {
throw new IllegalArgumentException("'spring.hedera.network' property must be set");
}
log.debug("Raw Account ID: {}", properties.getAccountId());
log.debug("Raw Private Key: {}", properties.getPrivateKey());
log.debug("Raw Network Name: {}", properties.getNetwork().getName());
log.debug("Raw Network: {}", properties.getNetwork().getNodes());

try {
accountId = AccountId.fromString(properties.getAccountId());
} catch (Exception e) {
Expand Down
6 changes: 0 additions & 6 deletions src/test/resources/application-solo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,4 @@ spring:
port: 50111
account: 0.0.5
mirrornode: localhost:8080
logging:
level:
com:
openelements:
spring:
hedera: DEBUG

0 comments on commit e01d2ee

Please sign in to comment.