Skip to content

Commit

Permalink
turn base dockerfile into a tallboi layer (#7408)
Browse files Browse the repository at this point in the history
* turn base dockerfile into a tallboi layer

* fixes

* more fixes

* typo

* tmpfiles addback

* split out apt steps

* shorten to 400

Co-authored-by: Philippe Noël <phil@whist.com>
  • Loading branch information
Roshan Padaki and Philippe Noël authored Sep 29, 2022
1 parent 5381a45 commit 76e0616
Show file tree
Hide file tree
Showing 2 changed files with 138 additions and 277 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def logs_contain_errors(logs_root_dir, verbose=False):
server_log_num_lines = sum(1 for x in open(server_log_file))

# When the logging files are too short, this very likely means that the client failed to connect to the server
if client_log_num_lines < 500 or server_log_num_lines < 500:
if client_log_num_lines < 400 or server_log_num_lines < 400:
if verbose:
print(
f"Warning: client log file {client_log_file} contains {client_log_num_lines} lines and server log file {server_log_file} contains {server_log_num_lines} lines. At least one of them is too short, which likely means the client failed to connect to the server."
Expand Down
Loading

0 comments on commit 76e0616

Please sign in to comment.