Skip to content

Commit

Permalink
-t means timestamps in old docker land
Browse files Browse the repository at this point in the history
  • Loading branch information
dianabarsan committed Feb 3, 2024
1 parent 7d5a9b2 commit e5e0e1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const killSpawnedProcess = (proc) => {
};

const waitForDockerContainerLogs = (...regex) => {
const params = 'logs -f -n=1 couchdb';
const params = 'logs --follow --tail=1 couchdb';
const proc = spawn(
'docker-compose',
params.split(' '),
Expand Down Expand Up @@ -64,7 +64,7 @@ const waitForDockerContainerLogs = (...regex) => {
};

const getDockerContainerLogs = (...regex) => {
const params = 'logs -f -n=1 couchdb';
const params = 'logs --follow --tail=1 couchdb';
const proc = spawn(
'docker-compose',
params.split(' '),
Expand Down

0 comments on commit e5e0e1d

Please sign in to comment.