Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

Commit

Permalink
fix: value annotation for environment name (#495)
Browse files Browse the repository at this point in the history
* fix: value annotation for environment name

* Update max-http-header-size

* Update version to 4.12.1

Co-authored-by: Shawn Sherwood <[email protected]>
  • Loading branch information
Rebecca Dong and shawn-sher committed May 3, 2021
1 parent 3d37195 commit 39ac98f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public class JwtService {
@Autowired
public JwtService(
CerberusSigningKeyResolver signingKeyResolver,
@Value("cerberus.environmentName") String environmentName,
@Value("${cerberus.environmentName}") String environmentName,
JwtBlocklistDao jwtBlocklistDao) {
this.signingKeyResolver = signingKeyResolver;
this.environmentName = environmentName;
Expand Down
3 changes: 3 additions & 0 deletions cerberus-web/src/main/resources/cerberus.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ c3p0:
maxConnectionAge: 300
preferredTestQuery: SELECT 1

server:
max-http-header-size: 65536

cerberus:
partitions:
awsGlobal:
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
# limitations under the License.
#

version=4.12.0
version=4.12.1
group=com.nike.cerberus

0 comments on commit 39ac98f

Please sign in to comment.