Skip to content

Commit 2fff158

Browse files
committed
fixed merge errors
1 parent 21e4fcb commit 2fff158

4 files changed

Lines changed: 11 additions & 23 deletions

File tree

Dockerfile

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
<<<<<<< HEAD
21
# Use a consistent Node.js version across build and release stages
32
FROM node:23-slim AS builder
4-
=======
5-
FROM docker.io/ubuntu:22.04
6-
>>>>>>> master
73

84
# Install Python for node-gyp (required for sqlite3 build)
95
RUN apt-get update && apt-get install -y python3 build-essential && \

devenv/docker-compose.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,9 @@
22
name: databus_devenv
33
services:
44
gstore:
5-
<<<<<<< HEAD
65
restart: unless-stopped
76
image: dbpedia/gstore:dev
87
container_name: databus_devenv_gstore
9-
=======
10-
image: docker.io/dbpedia/gstore:dev
11-
container_name: devenv_gstore
12-
>>>>>>> master
138
environment:
149
STORAGE_USER: "dba"
1510
STORAGE_PASS: "everyoneknows"
@@ -31,14 +26,9 @@ services:
3126
- ./data/index/:/index
3227
- ../search/servlet-config.yml:/resources/config.yml
3328
virtuoso:
34-
<<<<<<< HEAD
3529
restart: unless-stopped
3630
image: "openlink/virtuoso-opensource-7:latest"
3731
container_name: databus_devenv_virtuoso
38-
=======
39-
image: "docker.io/openlink/virtuoso-opensource-7:latest"
40-
container_name: devenv_virtuoso
41-
>>>>>>> master
4232
environment:
4333
DBA_PASSWORD: "everyoneknows"
4434
SPARQL_UPDATE: "true"

server/app/api/swagger.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -87,16 +87,9 @@ paths:
8787
"@graph": [
8888
{
8989
"@type": "Version",
90-
<<<<<<< HEAD
9190
"@id": "%DATABUS_RESOURCE_BASE_URL%/[YOUR_ACCOUNT_NAME]/test_group/test_artifact/0.0.1",
9291
"title": "Test Data",
9392
"description": "Test data from the swagger API. This can probably be deleted.",
94-
=======
95-
"@id": "https://dev.databus.dbpedia.org/<your username>/test_group/test_artifact/2022-02-09",
96-
"hasVersion": "2022-02-09",
97-
"title": "test_group test_artifact",
98-
"description": "version of the test_artifact dataset from DBpedia",
99-
>>>>>>> master
10093
"license": "https://dalicc.net/licenselibrary/Apache-2.0",
10194
"distribution": [
10295
{

server/app/tests/test.accounts.js

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,17 @@ test('CREATE account returns 200', async () => {
7171
},
7272
};
7373

74-
const response = await rp(options);
75-
assert.is(response.statusCode, 200);
74+
try {
75+
const response = await rp(options);
76+
assert.is(response.statusCode, 200);
77+
} catch (err) {
78+
console.error('Request failed:', {
79+
statusCode: err.statusCode,
80+
message: err.message,
81+
body: err.error
82+
});
83+
throw err;
84+
}
7685
});
7786

7887
test('SEARCH account by label returns 200', async () => {

0 commit comments

Comments
 (0)