Skip to content

Commit 613fc0f

Browse files
committed
Bad fake ids, need to be unique.
1 parent 39a7e60 commit 613fc0f

File tree

1 file changed

+2
-2
lines changed
  • stubbornjava-webapp/src/main/java/com/stubbornjava/webapp/post

1 file changed

+2
-2
lines changed

stubbornjava-webapp/src/main/java/com/stubbornjava/webapp/post/PostData.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -665,7 +665,7 @@ public class PostData {
665665
.build()
666666
);
667667
posts.add(PostRaw.builder()
668-
.postId(1L)
668+
.postId(2L)
669669
.title("Creating a local development environment with Docker Compose")
670670
.metaDesc("Setting up MySQL and Elasticsearch locally with Docker Compose to simplify your development environment. Docker compose mysql example and docker compose elasticsearch example.")
671671
.dateCreated(LocalDateTime.parse("2017-10-24T01:15:30"))
@@ -689,7 +689,7 @@ public class PostData {
689689
.build()
690690
);
691691
posts.add(PostRaw.builder()
692-
.postId(1L)
692+
.postId(3L)
693693
.title("Installing Java, supervisord and other service dependencies with Ansible")
694694
.metaDesc("Example using Ansible to install java8, supervisord, users, groups and file structures in a repeatable way. Configuring AWS EC2 instances with Ansible example.")
695695
.dateCreated(LocalDateTime.parse("2017-11-17T01:15:30"))

0 commit comments

Comments
 (0)