| Index: PRESUBMIT.py
|
| diff --git a/PRESUBMIT.py b/PRESUBMIT.py
|
| index 0ab53291096d1c6b3f7fc2f594acf275609bef96..d60a19cccd0d687f102d1be589593b36cae4421e 100644
|
| --- a/PRESUBMIT.py
|
| +++ b/PRESUBMIT.py
|
| @@ -1485,7 +1485,11 @@ def _CheckIpcOwners(input_api, output_api):
|
|
|
| results = []
|
| if errors:
|
| - results.append(output_api.PresubmitError(
|
| + if input_api.is_committing:
|
| + output = output_api.PresubmitError
|
| + else:
|
| + output = output_api.PresubmitPromptWarning
|
| + results.append(output(
|
| 'Found changes to IPC files without a security OWNER!',
|
| long_text='\n\n'.join(errors)))
|
|
|
|
|