Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugo Arregui committed Aug 24, 2023
1 parent 332b12b commit fa76b8b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions proto/decentraland/bff/http_endpoints.proto
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ message AboutResponse {
}
message CommsInfoAdapter {
enum AdapterType{
fixed = 0;
archipelago = 1;
}
AdapterType type;
string connectionString;
FIXED = 0;
ARCHIPELAGO = 1;
}
AdapterType type = 1;
string connection_string = 2;
}
message CommsInfo {
// common properties
Expand Down
10 changes: 5 additions & 5 deletions proto/decentraland/realm/about.proto
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ message AboutResponse {
}
message CommsInfoAdapter {
enum AdapterType{
fixed = 0;
archipelago = 1;
}
AdapterType type;
string connectionString;
FIXED = 0;
ARCHIPELAGO = 1;
}
AdapterType type = 1;
string connection_string = 2;
}
message CommsInfo {
// common properties
Expand Down

0 comments on commit fa76b8b

Please sign in to comment.