-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: drop restart sequence to prohibit bad requests on restart micros…
…ervice
- Loading branch information
1 parent
54f7796
commit b00bdab
Showing
5 changed files
with
12 additions
and
20 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
18 changes: 9 additions & 9 deletions
18
library-api-library-service/src/main/resources/db/postgres/data.sql
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,9 +1,9 @@ | ||
INSERT INTO library (book_id, status) VALUES (100, 'IN_LIBRARY') ON CONFLICT DO NOTHING; | ||
INSERT INTO library (book_id, status) VALUES (101, 'IN_LIBRARY') ON CONFLICT DO NOTHING; | ||
INSERT INTO library (book_id, status) VALUES (102, 'ON_LOAN') ON CONFLICT DO NOTHING; | ||
INSERT INTO library (book_id, status) VALUES (103, 'IN_LIBRARY') ON CONFLICT DO NOTHING; | ||
INSERT INTO library (book_id, status) VALUES (104, 'IN_LIBRARY') ON CONFLICT DO NOTHING; | ||
INSERT INTO library (book_id, status) VALUES (105, 'IN_LIBRARY') ON CONFLICT DO NOTHING; | ||
INSERT INTO library (book_id, status) VALUES (106, 'IN_LIBRARY') ON CONFLICT DO NOTHING; | ||
INSERT INTO library (book_id, status) VALUES (107, 'ON_LOAN') ON CONFLICT DO NOTHING; | ||
INSERT INTO library (book_id, status) VALUES (108, 'ON_LOAN') ON CONFLICT DO NOTHING; | ||
INSERT INTO library (book_id, status) VALUES (1, 'IN_LIBRARY') ON CONFLICT DO NOTHING; | ||
INSERT INTO library (book_id, status) VALUES (2, 'IN_LIBRARY') ON CONFLICT DO NOTHING; | ||
INSERT INTO library (book_id, status) VALUES (3, 'ON_LOAN') ON CONFLICT DO NOTHING; | ||
INSERT INTO library (book_id, status) VALUES (4, 'IN_LIBRARY') ON CONFLICT DO NOTHING; | ||
INSERT INTO library (book_id, status) VALUES (5, 'IN_LIBRARY') ON CONFLICT DO NOTHING; | ||
INSERT INTO library (book_id, status) VALUES (6, 'IN_LIBRARY') ON CONFLICT DO NOTHING; | ||
INSERT INTO library (book_id, status) VALUES (7, 'IN_LIBRARY') ON CONFLICT DO NOTHING; | ||
INSERT INTO library (book_id, status) VALUES (8, 'ON_LOAN') ON CONFLICT DO NOTHING; | ||
INSERT INTO library (book_id, status) VALUES (9, 'ON_LOAN') ON CONFLICT DO NOTHING; |
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