aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2012-12-08 11:36:31 +0100
committerTrygve Laugstøl <trygvis@inamo.no>2012-12-08 11:36:31 +0100
commit58e2f4c4ef4655c88270b2c3a6b53ef642f82c57 (patch)
tree79c244dc1143a9e1d74055491376c1344bfb18db /src/main/resources
parent164ce072f94a0820d6c2256aab8c6ee8d90d8eee (diff)
downloadesper-testing-58e2f4c4ef4655c88270b2c3a6b53ef642f82c57.tar.gz
esper-testing-58e2f4c4ef4655c88270b2c3a6b53ef642f82c57.tar.bz2
esper-testing-58e2f4c4ef4655c88270b2c3a6b53ef642f82c57.tar.xz
esper-testing-58e2f4c4ef4655c88270b2c3a6b53ef642f82c57.zip
o Closing the HTTP streams so we don't run out of connections.
o Attaching the build to a server.
Diffstat (limited to 'src/main/resources')
-rwxr-xr-xsrc/main/resources/ddl-jenkins.sql3
-rwxr-xr-xsrc/main/resources/logback-test.xml2
2 files changed, 4 insertions, 1 deletions
diff --git a/src/main/resources/ddl-jenkins.sql b/src/main/resources/ddl-jenkins.sql
index c34e8cb..df98185 100755
--- a/src/main/resources/ddl-jenkins.sql
+++ b/src/main/resources/ddl-jenkins.sql
@@ -16,6 +16,8 @@ CREATE TABLE jenkins_build (
uuid CHAR(36) NOT NULL,
created_date TIMESTAMP NOT NULL,
+ server CHAR(36) NOT NULL,
+
entry_id VARCHAR(1000) NOT NULL,
url VARCHAR(1000) NOT NULL,
result VARCHAR(100) NOT NULL,
@@ -24,6 +26,7 @@ CREATE TABLE jenkins_build (
timestamp TIMESTAMP NOT NULL,
CONSTRAINT pk_jenkins_build PRIMARY KEY (UUID),
+ CONSTRAINT fk_jenkins_build__server FOREIGN KEY (server) REFERENCES jenkins_server (uuid),
CONSTRAINT uq_jenkins_build__id UNIQUE (entry_id)
);
diff --git a/src/main/resources/logback-test.xml b/src/main/resources/logback-test.xml
index b972562..49aa8bc 100755
--- a/src/main/resources/logback-test.xml
+++ b/src/main/resources/logback-test.xml
@@ -12,7 +12,7 @@
<!-- Gitorious spews out a few invalid cookies -->
<logger name="org.apache.http.client.protocol.ResponseProcessCookies" level="ERROR"/>
- <root level="DEBUG">
+ <root>
<appender-ref ref="STDOUT"/>
</root>
</configuration>