Skip to content

Commit

Permalink
remove conflict markers
Browse files Browse the repository at this point in the history
  • Loading branch information
andrefs committed Jul 26, 2023
1 parent 23f6dcc commit 08e34c7
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 26 deletions.
16 changes: 2 additions & 14 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,12 @@ services:
# scale: 3
depends_on:
- pubsub
<<<<<<< Updated upstream
- database
networks:
- ps
- db
environment:
MONGODB_HOST: database
=======
- db
networks:
- pubsub
- database
environment:
MONGODB_HOST: db
>>>>>>> Stashed changes
REDIS_HOST: pubsub
MAX_PATH_LENGTH: '${MAX_PATH_LENGTH}'
MAX_PATH_PROPS: '${MAX_PATH_PROPS}'
Expand Down Expand Up @@ -57,13 +48,10 @@ services:
ports:
- '3000:3000'
- '5432:5432'
<<<<<<< Updated upstream
database:
=======
db:
>>>>>>> Stashed changes
image: mongo
restart: unless-stopped
restart:
unless-stopped
#environment:
# MONGO_INITDB_ROOT_USERNAME_FILE: /run/secrets/MONGODB_USER
# MONGO_INITDB_ROOT_PASSWORD_FILE: /run/secrets/MONGODB_PASS
Expand Down
4 changes: 0 additions & 4 deletions src/manager/lib/ProcessManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,11 +143,7 @@ app.post('/processes', async (req, res) => {
},
seeds: uniqueSeeds,
});
<<<<<<< Updated upstream
await Process.startNext();
=======
//await Process.startNext();
>>>>>>> Stashed changes
res.redirect(303, '/processes/' + p.pid);
});

Expand Down
8 changes: 0 additions & 8 deletions src/models/Path.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@ export interface PathSkeleton {
predicates: { elems: string[] };
nodes: { elems: string[] };
parentPath: IPath;
<<<<<<< Updated upstream
=======
processId: string;
>>>>>>> Stashed changes
}

export interface IPath {
Expand All @@ -34,10 +30,6 @@ export interface IPath {
needsCrawling: boolean;
};
parentPath: Types.ObjectId;
<<<<<<< Updated upstream
=======
processId: string;
>>>>>>> Stashed changes
status:
| 'active'
| 'disabled' // a better alternative path was found
Expand Down

0 comments on commit 08e34c7

Please sign in to comment.