Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
8 changes: 4 additions & 4 deletions infra/scripts/cosmosdb_and_ai_user_role_assignment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -154,10 +154,10 @@ echo "add_cosmosdb_access.sh completed successfully."


# Call add_cosmosdb_access.sh
Comment thread
Ayaz-Microsoft marked this conversation as resolved.
Outdated
echo "Running assign_azure_ai_user_role.sh"
bash infra/scripts/assign_azure_ai_user_role.sh "$resourceGroupName" "$aif_resource_id" "$principal_ids" "$managedIdentityClientId"
echo "Running assign_foundry_user_role.sh"
bash infra/scripts/assign_foundry_user_role.sh "$resourceGroupName" "$aif_resource_id" "$principal_ids" "$managedIdentityClientId"
if [ $? -ne 0 ]; then
echo "Error: assign_azure_ai_user_role.sh failed."
echo "Error: assign_foundry_user_role.sh failed."
exit 1
fi
echo "assign_azure_ai_user_role.sh completed successfully."
echo "assign_foundry_user_role.sh completed successfully."
2 changes: 1 addition & 1 deletion src/App/src/hooks/usePlanWebSocket.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ export function usePlanWebSocket({
steps: [],
next_steps: [],
content: formatErrorMessage(errorContent),
raw_data: finalMessage || '',
raw_data: finalMessage,
};
dispatch(addAgentMessage(errorAgent));
dispatch(planFailedFinal());
Expand Down