Skip to content
Snippets Groups Projects
Commit b02673d3 authored by Constantin P.'s avatar Constantin P. 💬
Browse files

Conflicts resolved

parents 7ba904c5 df4e9f63
Branches feature-13362
No related tags found
3 merge requests!1779Develop port 02 12,!1743Hotfix update subs,!1709feature-13362
......@@ -212,6 +212,8 @@ amd64:linux.tps:
before_script:
- /opt/buildtools/prepare_environment.sh amd64-linux
- *fill_version_mk
when: manual
script:
- ./prod_build/build.sh --target linux release -DBUILD_WITH_TPS_TEST=ON
- ./prod_build/pack.sh --target linux release
......
Subproject commit 17abbf5f2c5c85e61847643983bde90c7486ee4f
Subproject commit 8c6912d900ba993a4ed515c7632a770e9893d84e
......@@ -161,6 +161,8 @@ network_mask=255.255.255.0
# Console interface server
[cli-server]
enabled=true
# debug_more=false
# debug-cli=false
#unix-only
#listen-path=[../var/run/node_cli]
#listen-address=[127.0.0.1:12345]
......@@ -180,6 +182,8 @@ ca_folders=[../var/lib/ca,../share/ca]
#debug_more=true
path=../var/lib/global_db
driver=
#debug_more=true
# mdbx_upper_limit_of_db_size=1024
# Plugins
[plugins]
......
......@@ -20,7 +20,7 @@ node-role=
#permanent_nodes_hosts=[]
# This addresses will have priviledged acceess to some GDB groups
authorized_nodes_addrs=[BCA3::B097::DCDC::CB2B, 038E::0C9B::A3E8::C533, CC88::3F68::5313::1577, 72F9::511B::616A::A46F, A2C2::0CD4::38BA::2E8C, A983::7C3F::7FD4::4950, D1E4::F837::F42C::BFEF, B6E5::1B78::847A::F026]
# This hosts wiil be used as bootstrap balancers for first net access
# This hosts will be used as bootstrap balancers for first net access
seed_nodes_hosts=[0.root.raiden.cellframe.net:8079, 1.root.raiden.cellframe.net:8079, 2.root.raiden.cellframe.net:8079]
#[auth]
......
......@@ -21,7 +21,7 @@ node-role=
# This addresses will have priviledged acceess to some GDB groups
authorized_nodes_addrs=[D420::C2A9::0637::040C,AC33::9A06::AAD8::B288,5DA8::C171::E316::C923,72F9::511B::616A::A46F,A2C2::0CD4::38BA::2E8C,A983::7C3F::7FD4::4950,D1E4::F837::F42C::BFEF]
# This hosts wiil be used as bootstrap balancers for first net access
# This hosts will be used as bootstrap balancers for first net access
seed_nodes_hosts=[0.root.riemann.cellframe.net:8079, 1.root.riemann.cellframe.net:8079, 2.root.riemann.cellframe.net:8079]
#[auth]
......
......@@ -18,7 +18,7 @@ node-role=
#permanent_nodes_hosts=[]
# This addresses will have priviledged acceess to some GDB groups
authorized_nodes_addrs=[608C::F7B7::D476::2438, 7497::4FB4::CFA1::9823, 5641::292F::13F5::F039]
# This hosts wiil be used as bootstrap balancers for first net access
# This hosts will be used as bootstrap balancers for first net access
seed_nodes_hosts=[0.root.subzero.cellframe.net:8190, 1.root.subzero.cellframe.net:8190, 2.root.subzero.cellframe.net:8190]
#[auth]
......
......@@ -210,7 +210,10 @@ int main( int argc, const char **argv )
{
char l_config_dir[MAX_PATH] = {'\0'};
sprintf(l_config_dir, "%s/etc", g_sys_dir_path);
dap_config_init(l_config_dir);
if (dap_config_init(l_config_dir) != 0) {
log_it( L_CRITICAL,"Can't init general configurations" );
return -1;
}
}
if ((g_config = dap_config_open(dap_get_appname())) == NULL ) {
......@@ -407,13 +410,13 @@ int main( int argc, const char **argv )
}
#endif
dap_chain_net_load_all();
if ( dap_chain_node_cli_init(g_config) ) {
log_it( L_CRITICAL, "Can't init server for console" );
return -11;
}
dap_chain_net_load_all();
log_it(L_INFO, "Automatic mempool processing %s",
dap_chain_node_mempool_autoproc_init() ? "enabled" : "disabled");
......
VERSION_MAJOR=5
VERSION_MINOR=3
VERSION_PATCH=176
VERSION_PATCH=178
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment