Skip to content

Commit

Permalink
fix: pg text request process (#429)
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas GRUSON authored Jun 7, 2021
1 parent f316bc9 commit dbc9623
Show file tree
Hide file tree
Showing 14 changed files with 16 additions and 10 deletions.
2 changes: 1 addition & 1 deletion charts/candidate/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: ara
version: 9.0.0-rc.1
version: 9.0.1-rc.1
home: https://github.com/Decathlon/ara
description: |
ARA helps you to fight against regressions by letting it preanalyze your non-regression tests runs,
Expand Down
2 changes: 1 addition & 1 deletion charts/candidate/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ api:
image:
registry: docker.io
repository: decathlon/ara-api
tag: 9.0.0
tag: 9.0.2
imagePullPolicy: IfNotPresent
replicas: 1
annotations: {}
Expand Down
2 changes: 1 addition & 1 deletion code/api/api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

<groupId>com.decathlon.ara</groupId>
<artifactId>ara-api</artifactId>
<version>9.0.1</version>
<version>9.0.2</version>

<name>ARA API</name>
<description>
Expand Down
2 changes: 1 addition & 1 deletion code/api/database/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

<groupId>com.decathlon.ara</groupId>
<artifactId>ara-database</artifactId>
<version>9.0.1</version>
<version>9.0.2</version>

<name>ARA Database</name>
<description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ public class Communication implements Comparable<Communication> {
private CommunicationType type;

@Lob
@org.hibernate.annotations.Type(type = "org.hibernate.type.TextType")
private String message;

// 2/2 for @EqualsAndHashCode to work: used for entities created outside of JPA
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ public class ExecutedScenario implements Comparable<ExecutedScenario> {
private int line;

@Lob
@org.hibernate.annotations.Type(type = "org.hibernate.type.TextType")
private String content;

@Column(name = "start_date_time")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ public class Functionality implements Comparable<Functionality> {
private CoverageLevel lazyLoadedCoverageLevel;

@Lob
@org.hibernate.annotations.Type(type = "org.hibernate.type.TextType")
private String comment;

@Column(name = "creation_date_time")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ public class Problem implements Comparable<Problem> {
private String name;

@Lob
@org.hibernate.annotations.Type(type = "org.hibernate.type.TextType")
private String comment;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ public class ProblemPattern {
* Matches the beginning of {@link Error#exception}, optionally containing '%' for LIKE-matching.
*/
@Lob
@org.hibernate.annotations.Type(type = "org.hibernate.type.TextType")
private String exception;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ public class Scenario implements Comparable<Scenario> {
private int line;

@Lob
@org.hibernate.annotations.Type(type = "org.hibernate.type.TextType")
private String content;

@ManyToMany(fetch = FetchType.LAZY, mappedBy = "scenarios")
Expand Down
2 changes: 1 addition & 1 deletion code/api/generated-cucumber-report/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

<groupId>com.decathlon.ara</groupId>
<artifactId>ara-generated-cucumber-report</artifactId>
<version>9.0.1</version>
<version>9.0.2</version>

<name>ARA Cucumber</name>
<description>
Expand Down
4 changes: 2 additions & 2 deletions code/api/jacoco-aggregation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
<parent>
<artifactId>ara-parent</artifactId>
<groupId>com.decathlon.ara</groupId>
<version>9.0.1</version>
<version>9.0.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>com.decathlon.ara</groupId>
<artifactId>jacoco-aggregation</artifactId>
<packaging>pom</packaging>
<version>9.0.1</version>
<version>9.0.2</version>

<name>Jacoco Report Aggregation</name>

Expand Down
2 changes: 1 addition & 1 deletion code/api/lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

<groupId>com.decathlon.ara</groupId>
<artifactId>ara-lib</artifactId>
<version>9.0.1</version>
<version>9.0.2</version>

<properties>
<java.version>16</java.version>
Expand Down
4 changes: 2 additions & 2 deletions code/api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<groupId>com.decathlon.ara</groupId>
<artifactId>ara-parent</artifactId>
<packaging>pom</packaging>
<version>9.0.1</version>
<version>9.0.2</version>

<name>ARA Parent</name>
<description>
Expand All @@ -38,7 +38,7 @@

<properties>
<sonar.coverage.jacoco.xmlReportPaths>${project.basedir}/jacoco-aggregation/target/site/jacoco-aggregate/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
<jacoco.phase></jacoco.phase>
<jacoco.phase />
<jacoco.aggregation.phase>verify</jacoco.aggregation.phase>
<lombok.phase>generate-sources</lombok.phase>
</properties>
Expand Down

0 comments on commit dbc9623

Please sign in to comment.