File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 } "` ) ;
You can’t perform that action at this time.
0 commit comments