Skip to content
Snippets Groups Projects
Commit e1c29fcb authored by Chris Lamb's avatar Chris Lamb :eyes:
Browse files

Reduce the number of max stderr lines printed from 50 to 25; usually the error is obvious by then.

parent 443e2baf
No related branches found
No related tags found
No related merge requests found
Pipeline #135638 passed
......@@ -28,7 +28,7 @@ logger = logging.getLogger(__name__)
class Command(metaclass=abc.ABCMeta):
MASK_STDERR = False
MAX_STDERR_LINES = 50
MAX_STDERR_LINES = 25
VALID_RETURNCODES = {0}
def __init__(self, path):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment