Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion python/utils/role_discovery.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ async def _has_role(

def _is_missing_entrypoint_error(error: Exception) -> bool:
msg = str(error).lower()
return "entry point" in msg and "not found" in msg
return "entry" in msg and "point" in msg
Comment thread
remollemo marked this conversation as resolved.


async def _call_bool_entrypoint(
Expand Down
Loading