Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Syncing from upstream odoo/runbot (18.0-add-tracking-xdo) #810

Open
wants to merge 1 commit into
base: 18.0-add-tracking-xdo
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions runbot/models/build_error.py
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ class ErrorRegex(models.Model):
_rec_name = 'id'
_order = 'sequence, id'

regex = fields.Char('Regular expression')
regex = fields.Char('Regular expression', tracking=True)
re_type = fields.Selection([('filter', 'Filter out'), ('cleaning', 'Cleaning')], string="Regex type")
sequence = fields.Integer('Sequence', default=100)
replacement = fields.Char('Replacement string', help="String used as a replacment in cleaning. Use '' to remove the matching string. '%' if not set")
Expand Down Expand Up @@ -667,7 +667,7 @@ class ErrorQualifyRegex(models.Model):

sequence = fields.Integer('Sequence', default=100)
active = fields.Boolean('Active', default=True, tracking=True)
regex = fields.Char('Regular expression', required=True)
regex = fields.Char('Regular expression', required=True, tracking=True)

check_module_name = fields.Boolean('Check Module Name', default=False, help='Apply regex on Error Module Name')
check_file_path = fields.Boolean('Check File Path', default=False, help='Apply regex on Error Module Name')
Expand Down
1 change: 1 addition & 0 deletions runbot/views/build_error_views.xml
Original file line number Diff line number Diff line change
Expand Up @@ -460,6 +460,7 @@
</field>
</group>
</sheet>
<chatter/>
</form>
</field>
</record>
Expand Down