Adding http2 support to Vespa

This commit is contained in:
Weves
2023-12-23 16:13:38 -08:00
committed by Chris Weaver
parent 535dc265c5
commit dca4f7a72b
2 changed files with 49 additions and 23 deletions

View File

@@ -42,7 +42,7 @@ function Main({ ccPairId }: { ccPairId: number }) {
return (
<ErrorCallout
errorTitle={`Failed to fetch info on Connector with ID ${ccPairId}`}
errorMsg={error.toString()}
errorMsg={error?.info?.detail || error.toString()}
/>
);
}