Skip to content

Commit

Permalink
Merge main
Browse files Browse the repository at this point in the history
  • Loading branch information
MadsSR committed Dec 6, 2023
1 parent d1ab0b1 commit 6399e23
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Ecdar-ProtoBuf
Submodule Ecdar-ProtoBuf updated 2 files
+10 −0 api.proto
+1 −0 services.proto
6 changes: 3 additions & 3 deletions src/api/ecdar_api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ use super::server::server::{
get_users_response::UserInfo,
CreateAccessRequest, CreateModelRequest, CreateModelResponse, CreateQueryRequest,
CreateUserRequest, DeleteAccessRequest, DeleteModelRequest, DeleteQueryRequest,
GetAuthTokenRequest, GetAuthTokenResponse, GetModelRequest, GetModelResponse,
ListModelsInfoResponse, Query, QueryRequest, QueryResponse, SendQueryRequest,
GetAuthTokenRequest, GetAuthTokenResponse, GetModelRequest, GetModelResponse, GetUsersRequest,
GetUsersResponse, ListModelsInfoResponse, Query, QueryRequest, QueryResponse, SendQueryRequest,
SendQueryResponse, SimulationStartRequest, SimulationStepRequest, SimulationStepResponse,
UpdateAccessRequest, UpdateModelRequest, UpdateQueryRequest, UpdateUserRequest,
UserTokenResponse,
Expand Down Expand Up @@ -332,7 +332,7 @@ impl EcdarApi for ConcreteEcdarApi {
Ok(None) => {
return Err(Status::unauthenticated(
"No session found with given access token",
))
));
}
Err(error) => return Err(Status::internal(error.to_string())),
};
Expand Down

0 comments on commit 6399e23

Please sign in to comment.