Skip to content

Commit 09992bf

Browse files
committed
docker npm package changed from local version to remote version
1 parent e3f7955 commit 09992bf

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

examples/docker/auth/src/app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import eventRouter from './routes/event-router';
77
import { NotFoundError, errorHandler } from '@chronosrx/common';
88

99
import chronosConfig from './chronos-config';
10-
const Chronos = require('../chronos_npm_package/chronos.js');
10+
const Chronos = require('@chronosmicro/tracker');
1111
const chronos = new Chronos(chronosConfig);
1212

1313
chronos.propagate();

examples/docker/client/src/server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const express = require('express');
44
const PORT = 5001;
55

66
const chronosConfig = require('./chronos-config');
7-
const Chronos = require('../chronos_npm_package/chronos.js');
7+
const Chronos = require('@chronosmicro/tracker');
88
const chronos = new Chronos(chronosConfig);
99

1010
chronos.propagate();

examples/microservices/Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ define ENV_CONTENT
66
CHRONOS_DB=MongoDB
77
# Database connection string for Chronos to write metric to
88
CHRONOS_URI=mongodb://127.0.0.1:27017/?directConnection=true&serverSelectionTimeoutMS=2000&appName=mongosh+2.2.5
9-
109
# Database connection strings for each microservice
1110
MONGO_URI_AUTH=mongodb://127.0.0.1:27017/?directConnection=true&serverSelectionTimeoutMS=2000&appName=mongosh+2.2.5
1211
MONGO_URI_ITEMS=mongodb://127.0.0.1:27017/?directConnection=true&serverSelectionTimeoutMS=2000&appName=mongosh+2.2.5

0 commit comments

Comments
 (0)