Troubleshoot managing deployed applications

This document describes how to resolve errors that you might encounter when managing deployed applications.

Error when filtering the list of applications

Issue:

You receive an error message similar to the following:

InvalidArgument: 400 Provided filter is not valid.

Possible cause:

Your filter isn't formatted properly.

Recommended solution:

Update the formatting of your filter so it's formatted correctly. For example, you might be using the following to filter by display name. This filter isn't formatted correctly because it's missing quotation marks:

reasoning_engines.ReasoningEngine.list(filter=f'display_name={DISPLAY_NAME}')

In this case, enclose {DISPLAY_NAME} in double-quotation marks:

reasoning_engines.ReasoningEngine.list(filter=f'display_name="{DISPLAY_NAME}"')