From: Martin Jansa <martin.jansa@gmail.com>
To: openembedded-core@lists.openembedded.org
Subject: Re: [PATCH] report-error: send only last 5242000 characters in error logs
Date: Fri, 4 Sep 2015 14:24:23 +0200 [thread overview]
Message-ID: <20150904122423.GA2457@jama> (raw)
In-Reply-To: <1441369329-32134-1-git-send-email-Martin.Jansa@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 2148 bytes --]
On Fri, Sep 04, 2015 at 02:22:09PM +0200, Martin Jansa wrote:
> * otherwise whole build report submission is rejected because it's too big
Verified in last bitbake world build:
http://errors.yoctoproject.org/Errors/Build/8516/
until now they were rejected because webkit-efl log.do_compile is too
big, now it's uploades in shortened form:
http://errors.yoctoproject.org/Errors/Details/16393/
> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
> ---
> meta/classes/report-error.bbclass | 15 ++++++++++++---
> 1 file changed, 12 insertions(+), 3 deletions(-)
>
> diff --git a/meta/classes/report-error.bbclass b/meta/classes/report-error.bbclass
> index cabd98c..040c29e 100644
> --- a/meta/classes/report-error.bbclass
> +++ b/meta/classes/report-error.bbclass
> @@ -54,13 +54,22 @@ python errorreport_handler () {
> if log:
> try:
> logFile = open(log, 'r')
> - taskdata['log'] = logFile.read().decode('utf-8')
> + logdata = logFile.read().decode('utf-8')
> logFile.close()
> except:
> - taskdata['log'] = "Unable to read log file"
> + logdata = "Unable to read log file"
>
> else:
> - taskdata['log'] = "No Log"
> + logdata = "No Log"
> +
> + # server will refuse failures longer than param specified in project.settings.py
> + # MAX_UPLOAD_SIZE = "5242880"
> + # use lower value, because 650 chars can be spent in task, package, version
> + max_logdata_size = 5242000
> + # upload last max_logdata_size characters
> + if len(logdata) > max_logdata_size:
> + logdata = "..." + logdata[-max_logdata_size:]
> + taskdata['log'] = logdata
> lock = bb.utils.lockfile(datafile + '.lock')
> jsondata = json.loads(errorreport_getdata(e))
> jsondata['failures'].append(taskdata)
> --
> 2.5.0
>
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 188 bytes --]
prev parent reply other threads:[~2015-09-04 12:23 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-09-04 12:22 [PATCH] report-error: send only last 5242000 characters in error logs Martin Jansa
2015-09-04 12:24 ` Martin Jansa [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20150904122423.GA2457@jama \
--to=martin.jansa@gmail.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.