Skip to content

Commit ff0383c

Browse files
committed
Fix lint_commenter issue, and possible lint issue
1 parent 9e6a509 commit ff0383c

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

messaging/integration_test/src/integration_test.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
#include <cstdlib>
2121
#include <cstring>
2222
#include <ctime>
23+
#include <map>
24+
#include <string>
2325
#include <thread>
2426

2527
#include "app_framework.h" // NOLINT

scripts/gha/lint_commenter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ def main():
127127
'-H', header,
128128
'-H', 'Authorization: token %s' % args.token,
129129
request_url
130-
] + ([] if not args.verbose else ['-v'])).decode('utf-8')
130+
] + ([] if not args.verbose else ['-v'])).decode('utf-8', errors='replace')
131131
# Parse the diff to determine the whether each source line is touched.
132132
# Only lint lines that refer to parts of files that are diffed will be shown.
133133
# Information on what this means here:

0 commit comments

Comments
 (0)