Skip to content

Commit 13602fa

Browse files
trigger
1 parent 9892c6d commit 13602fa

File tree

6 files changed

+6
-8
lines changed

6 files changed

+6
-8
lines changed

auth/src/index.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,8 @@ const start = async () => {
1919
console.error(error);
2020
}
2121
app.listen(3000, () => {
22-
console.log("auth service running on 3000");
22+
console.log("auth service running on 3000..");
2323
});
2424
};
2525

2626
start();
27-
28-
//trigger

client/pages/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Link from "next/link";
22

3-
const LandingPage = ({ currentUser, tickets }) => {
3+
const LandingPage = ({ tickets }) => {
44
return (
55
<div>
66
<h1>Tickets</h1>

expiration/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const start = async () => {
3030
process.on("SIGINT", () => natsWrapper.client.close());
3131
process.on("SIGTERM", () => natsWrapper.client.close());
3232

33-
// start listening to nats streaming server
33+
// start listening to nats streaming server..
3434
new OrderCreateListener(natsWrapper.client).listen();
3535
} catch (error) {
3636
console.error(error);

orders/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ const start = async () => {
5656
console.error(error);
5757
}
5858
app.listen(3000, () => {
59-
console.log("orders service running on 3000");
59+
console.log("orders service running on 3000..");
6060
});
6161
};
6262

payments/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ const start = async () => {
5252
console.error(error);
5353
}
5454
app.listen(3000, () => {
55-
console.log("payments service running on 3000");
55+
console.log("payments service running on 3000..");
5656
});
5757
};
5858

tickets/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const start = async () => {
5353
console.error(error);
5454
}
5555
app.listen(3000, () => {
56-
console.log("tickets service running on 3000");
56+
console.log("tickets service running on 3000..");
5757
});
5858
};
5959

0 commit comments

Comments
 (0)