Skip to content

Commit 08f2427

Browse files
committed
Fix
1 parent ad6f10c commit 08f2427

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/cli/logs.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ describe("Railway Logs Module", () => {
119119
const command = await buildLogCommand("deployment", "deploy-123");
120120

121121
expect(command).toBe(
122-
"railway logs --deployment --json --lines 1000 deploy-123"
122+
"railway logs --deployment --json --lines 100 deploy-123"
123123
);
124124
});
125125

src/cli/logs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export const buildLogCommand = async (
1818

1919
if (supportsLinesAndFilter) {
2020
// Always use --lines when specified to prevent streaming
21-
args.push("--lines", lines ? lines.toString() : "1000");
21+
args.push("--lines", lines ? lines.toString() : "100");
2222

2323
if (filter) {
2424
args.push("--filter", `"${filter}"`);

0 commit comments

Comments
 (0)