Skip to content

Commit

Permalink
perf($Feign): enable feign compression
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnymillergh committed May 13, 2020
1 parent 86a6af7 commit a9e69e8
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 1 deletion.
6 changes: 6 additions & 0 deletions api-portal/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@ feign:
connectTimeout: 5000
readTimeout: 10000
loggerLevel: full
compression:
request:
enabled: true
response:
enabled: true
useGzipDecoder: true

management:
endpoints:
Expand Down
6 changes: 6 additions & 0 deletions auth-center/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@ feign:
connectTimeout: 5000
readTimeout: 10000
loggerLevel: full
compression:
request:
enabled: true
response:
enabled: true
useGzipDecoder: true

management:
endpoints:
Expand Down
6 changes: 6 additions & 0 deletions exercise-mis/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@ feign:
connectTimeout: 5000
readTimeout: 10000
loggerLevel: full
compression:
request:
enabled: true
response:
enabled: true
useGzipDecoder: true

management:
endpoints:
Expand Down
8 changes: 7 additions & 1 deletion muscle-mis/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,13 @@ feign:
connectTimeout: 5000
readTimeout: 10000
loggerLevel: full
\
compression:
request:
enabled: true
response:
enabled: true
useGzipDecoder: true

management:
endpoints:
web:
Expand Down

0 comments on commit a9e69e8

Please sign in to comment.