-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat : adds negative tests and labels (#1385)
* feat : adds negative tests and labels * adds auto connection pooling
- Loading branch information
1 parent
ed7d688
commit 429255f
Showing
5 changed files
with
70 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 3 additions & 7 deletions
10
r2dbc/boot-reactive-cache/src/main/java/com/example/cache/utils/AppConstants.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,8 @@ | ||
package com.example.cache.utils; | ||
|
||
public final class AppConstants { | ||
public static final String PROFILE_PROD = "prod"; | ||
public static final String PROFILE_NOT_PROD = "!" + PROFILE_PROD; | ||
public static final String PROFILE_TEST = "test"; | ||
public static final String PROFILE_NOT_TEST = "!" + PROFILE_TEST; | ||
public static final String DEFAULT_PAGE_NUMBER = "0"; | ||
public static final String DEFAULT_PAGE_SIZE = "10"; | ||
public static final String DEFAULT_SORT_BY = "id"; | ||
public static final String DEFAULT_SORT_DIRECTION = "asc"; | ||
public static final String MOVIE_KEY = "movie:"; | ||
private static final String PROFILE_PROD = "prod"; | ||
public static final String PROFILE_NOT_PROD = "!" + PROFILE_PROD; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters