Skip to content

Commit fe3d134

Browse files
Cloud Debugger Teamcopybara-github
authored andcommitted
Internal changes
PiperOrigin-RevId: 378712533 Change-Id: Id4b8bc599fd81af78fc4daf6a0840ee4c859861a
1 parent cb1015f commit fe3d134

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/googleclouddebugger/immutability_tracer.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
#include "python_util.h"
2525

26-
ABSL_FLAG(int32, max_expression_lines, 10000,
26+
ABSL_FLAG(int32_t, max_expression_lines, 10000,
2727
"maximum number of Python lines to allow in a single expression");
2828

2929
namespace devtools {

src/googleclouddebugger/rate_limit.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@
2222
#include <cstdint>
2323

2424
ABSL_FLAG(
25-
int32, max_condition_lines_rate, 5000,
25+
int32_t, max_condition_lines_rate, 5000,
2626
"maximum number of Python lines/sec to spend on condition evaluation");
2727

2828
ABSL_FLAG(
29-
int32, max_dynamic_log_rate,
29+
int32_t, max_dynamic_log_rate,
3030
50, // maximum of 50 log entries per second on average
3131
"maximum rate of dynamic log entries in this process; short bursts are "
3232
"allowed to exceed this limit");
3333

34-
ABSL_FLAG(int32, max_dynamic_log_bytes_rate,
34+
ABSL_FLAG(int32_t, max_dynamic_log_bytes_rate,
3535
20480, // maximum of 20K bytes per second on average
3636
"maximum rate of dynamic log bytes in this process; short bursts are "
3737
"allowed to exceed this limit");

0 commit comments

Comments
 (0)