2017-12-12 02:09:52 +08:00
|
|
|
-- Copyright 2017 The Cartographer Authors
|
|
|
|
--
|
|
|
|
-- Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
-- you may not use this file except in compliance with the License.
|
|
|
|
-- You may obtain a copy of the License at
|
|
|
|
--
|
|
|
|
-- http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
--
|
|
|
|
-- Unless required by applicable law or agreed to in writing, software
|
|
|
|
-- distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
-- See the License for the specific language governing permissions and
|
|
|
|
-- limitations under the License.
|
|
|
|
|
|
|
|
include "map_builder.lua"
|
|
|
|
|
2018-01-04 20:51:30 +08:00
|
|
|
MAP_BUILDER_SERVER = {
|
2018-01-13 06:16:29 +08:00
|
|
|
map_builder = MAP_BUILDER,
|
2018-01-04 20:51:30 +08:00
|
|
|
num_event_threads = 4,
|
2017-12-12 02:09:52 +08:00
|
|
|
num_grpc_threads = 4,
|
2018-01-13 06:16:29 +08:00
|
|
|
server_address = "0.0.0.0:50051",
|
2018-03-09 23:57:58 +08:00
|
|
|
uplink_server_address = "",
|
2017-12-12 02:09:52 +08:00
|
|
|
}
|