Skip to content

Commit

Permalink
v0.50.3-RELEASE and code quality fixups
Browse files Browse the repository at this point in the history
  • Loading branch information
Aidan Whiteley committed Oct 26, 2024
1 parent 5152779 commit 38d5551
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<groupId>com.aidanwhiteley</groupId>
<artifactId>books</artifactId>
<version>0.50.2-RELEASE</version>
<version>0.50.3-RELEASE</version>
<packaging>jar</packaging>

<name>Books Microservice</name>
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ spring:
google:
client-id: NotInSCM1
client-secret: NotInSCM1
redirect-uri: http://localhost:8080/login/oauth2/code/google
redirect-uri: https://cloudybookclub.com/login/oauth2/code/google
facebook:
client-id: NotInSCM2
client-secret: NotInSCM2
redirect-uri: http://localhost:8080/login/oauth2/code/facebook
redirect-uri: https://cloudybookclub.com/login/oauth2/code/facebook
provider:
# Google provides all the info this app needs by default. Facebook needs configuring.
facebook:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ void confirmFindbyBookIdHandlesServiceUnavailable() {
theDao.searchGoogleBooksByGoogleBookId(SERVICE_UNAVAILABLE_BOOK_ID);
fail("There should have been a 503 on accessing stubbed http service");
} catch (HttpServerErrorException hsee) {
LOGGER.debug("Expected HttpServerErrorException exception caught: {}", hsee);
LOGGER.debug("Expected HttpServerErrorException exception caught: {}", hsee.toString());
}

context.getLogger(GoogleBooksDaoSync.class).setLevel(Level.valueOf("WARN"));
Expand Down

0 comments on commit 38d5551

Please sign in to comment.