[21.02.20] Bring pods back up with mapping class fix

This commit is contained in:
andyjk15 2020-02-21 20:44:59 +00:00
parent 801259a81d
commit 1148262d0c
3 changed files with 2 additions and 4 deletions

View File

@ -6,7 +6,7 @@ metadata:
name: RESOURCE_NAME
namespace: default
spec:
replicas: 0
replicas: 2
selector:
matchLabels:
app: RESOURCE_NAME

View File

@ -10,8 +10,7 @@ import javax.persistence.*;
@AllArgsConstructor
@NoArgsConstructor
@Data
@Builder
@Entity
@MappedSuperclass
public class TweetModel {
@Id

View File

@ -1,7 +1,6 @@
package cryptosky.me.graphql.tweets.service;
import cryptosky.me.graphql.tweets.models.entities.BtcTweetModel;
import cryptosky.me.graphql.tweets.models.entities.TweetModel;
import cryptosky.me.graphql.tweets.models.repositories.BtcTweetRepository;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;