[Python CSM] Fix interop client and server flag (#36827)

We changed the way flag was passed in this PR: https://github.com/grpc/psm-interop/pull/94
<!--

If you know who should review your pull request, please assign it to that
person, otherwise the pull request would get assigned randomly.

If your pull request is for a specific language, please add the appropriate
lang label.

-->

Closes #36827

COPYBARA_INTEGRATE_REVIEW=https://github.com/grpc/grpc/pull/36827 from XuanWang-Amos:csm_fix_interop a2c2c47f30
PiperOrigin-RevId: 640908453
This commit is contained in:
Xuan Wang 2024-06-06 08:33:43 -07:00 committed by Copybara-Service
parent 60301d40e0
commit 14d76aac59
2 changed files with 4 additions and 4 deletions

View File

@ -670,8 +670,8 @@ if __name__ == "__main__":
parser.add_argument(
"--enable_csm_observability",
help="Whether to enable CSM Observability",
default=False,
action="store_true",
default="False",
type=bool_arg,
)
parser.add_argument(
"--request_payload_size",

View File

@ -218,8 +218,8 @@ if __name__ == "__main__":
parser.add_argument(
"--enable_csm_observability",
help="Whether to enable CSM Observability",
default=False,
action="store_true",
default="False",
type=bool_arg,
)
args = parser.parse_args()
if args.verbose: