Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: oxidecomputer/omicron
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 46f0d308c65527be7120f06c82bdca52abe770a8
Choose a base ref
..
head repository: oxidecomputer/omicron
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b579475ffe81879980ec0b15423b34b944174fd5
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +2 −2 nexus/src/external_api/http_entrypoints.rs
4 changes: 2 additions & 2 deletions nexus/src/external_api/http_entrypoints.rs
Original file line number Diff line number Diff line change
@@ -6301,7 +6301,7 @@ impl NexusExternalApi for NexusExternalApiImpl {

async fn webhook_event_class_list(
rqctx: RequestContext<Self::Context>,
query_params: Query<
_query_params: Query<
PaginationParams<params::EventClassFilter, params::EventClassPage>,
>,
) -> Result<HttpResponseOk<ResultsPage<views::EventClass>>, HttpError> {
@@ -6326,7 +6326,7 @@ impl NexusExternalApi for NexusExternalApiImpl {

async fn webhook_event_class_view(
rqctx: RequestContext<Self::Context>,
path_params: Path<params::EventClassSelector>,
_path_params: Path<params::EventClassSelector>,
) -> Result<HttpResponseOk<views::EventClass>, HttpError> {
let apictx = rqctx.context();
let handler = async {