diff options
| author | Christof Rabensteiner <christof.rabensteiner@iaik.tugraz.at> | 2019-08-30 12:55:07 +0200 | 
|---|---|---|
| committer | Christof Rabensteiner <christof.rabensteiner@iaik.tugraz.at> | 2019-08-30 13:09:51 +0200 | 
| commit | 239398559a14ce75b945d9ec0d22f41d795b89f7 (patch) | |
| tree | a4abb9cb05b3211cd294c2dac7a41a7208e20992 /src/test/resources | |
| parent | 0edd61faa75a6dee07131760770de4fbb9557f61 (diff) | |
| download | moa-zs-239398559a14ce75b945d9ec0d22f41d795b89f7.tar.gz moa-zs-239398559a14ce75b945d9ec0d22f41d795b89f7.tar.bz2 moa-zs-239398559a14ce75b945d9ec0d22f41d795b89f7.zip | |
Organize application.yaml
- Add better descriptions.
- Reorder entries.
Diffstat (limited to 'src/test/resources')
| -rw-r--r-- | src/test/resources/config/application.yaml | 34 | 
1 files changed, 17 insertions, 17 deletions
| diff --git a/src/test/resources/config/application.yaml b/src/test/resources/config/application.yaml index 15d8cb3..aaaf005 100644 --- a/src/test/resources/config/application.yaml +++ b/src/test/resources/config/application.yaml @@ -7,14 +7,13 @@ logging:    level:      root: WARN      org.springframework: WARN -    at.gv: INFO #DEBUG -    iaik: INFO #DEBUG -    at.gv.egiz.moazs.backend: -      SignatureVerifier: DEBUG -      LogResponseSink: INFO - -    # Incoming and outgoing messages are logged to INFO. -    # Log all Incoming / Outgoing Messages. +    at.gv: INFO +    iaik: INFO +    at.gv.egiz.moazs.backend.SignatureVerifier: INFO +    at.gv.egiz.moazs.backend.LogResponseSink: INFO + +    # Log incoming / outgoing messages on services and clients. +    # (Incoming and outgoing messages are logged to INFO).      #org.apache.cxf.services : INFO      # Fine tune logging of messages per service / client: @@ -42,10 +41,10 @@ javax.net.ssl:  # DeliveryRequest/Config/ProfileId. If a parameter is missing, MOA ZS  # falls back to "default" You can override parameters in profiles.  # Parameter have the following (descending) priority: -#   DeliveryRequest/Config > [chosen-profile] > default +#   DeliveryRequest/Config > [profile referred by DeliveryRequest/Config/ProfileID] > default profile  delivery-request-configuration-profiles: -  # Mandatory +  # ProfileID. Mandatory    # The "default" profile. Will be chosen if    # DeliveryRequest/Config/ProfileId is missing.    default: @@ -187,20 +186,21 @@ moa.spss:      # Select, which trust-profile MOA SP-SS uses to verify a signature.      default-trustprofile: test-trustprofile -spring: -  # Redis Setup (Cluster Mode) -  redis: -    host: 172.17.0.2 -    port: 6379 -  main.allow-bean-definition-overriding: true +# Needed For Overriding Beans In Testing +spring.main.allow-bean-definition-overriding: true  # Mandatory  repository: -    # Mandatory    # Duration in minutes before repository records are evicted.    expiresAfterWrite: 30 +# Redis Setup (Cluster Mode) +spring: +  redis: +    host: 172.17.0.2 +    port: 6379 +  # Optional  # activate cluster mode  #  profiles.active: cluster | 
