Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
python-cellframe
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Code
Merge requests
3
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cellframe
python-cellframe
Compare revisions
25aadc5c656a3ab8d762f1989916e39ba9d2551b to c5fce4f8d55f9b956fcc1e9b05ccf2459f604c86
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
cellframe/python-cellframe
Select target project
No results found
c5fce4f8d55f9b956fcc1e9b05ccf2459f604c86
Select Git revision
Swap
Target
cellframe/python-cellframe
Select target project
cellframe/python-cellframe
1 result
25aadc5c656a3ab8d762f1989916e39ba9d2551b
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
[-] Removed debug information.
· f34e6e65
alexey.stratulat
authored
4 years ago
f34e6e65
Merge branch 'bugs-3967' into 'master'
· c5fce4f8
dmitriy.gerasimov
authored
4 years ago
[-] Removed debug information. See merge request
!33
c5fce4f8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
modules/plugins/src/dap_chain_plugins.c
+0
-2
0 additions, 2 deletions
modules/plugins/src/dap_chain_plugins.c
modules/plugins/src/dap_chain_plugins_command.c
+0
-2
0 additions, 2 deletions
modules/plugins/src/dap_chain_plugins_command.c
with
0 additions
and
4 deletions
modules/plugins/src/dap_chain_plugins.c
View file @
c5fce4f8
...
...
@@ -4,7 +4,6 @@
#define LOG_TAG "dap_chain_plugins"
int
dap_chain_plugins_init
(
dap_config_t
*
a_config
){
log_it
(
L_ERROR
,
"Z1"
);
if
(
dap_config_get_item_bool_default
(
a_config
,
"plugins"
,
"py_load"
,
false
)){
const
char
*
l_defaule_path_plugins
=
dap_strjoin
(
NULL
,
"/opt/"
,
dap_get_appname
(),
"/var/plugins/"
,
NULL
);
const
char
*
l_plugins_root_path
=
dap_config_get_item_str_default
(
a_config
,
"plugins"
,
"py_path"
,
...
...
@@ -27,7 +26,6 @@ int dap_chain_plugins_init(dap_config_t *a_config){
dap_chain_plugins_manifest_list_create
();
dap_chain_plugins_list_init
();
char
*
l_name_file
=
NULL
;
log_it
(
L_ERROR
,
"Z2"
);
LL_FOREACH
(
l_list_plugins_name
,
l_element
){
log_it
(
L_NOTICE
,
"Registration %s manifest"
,
l_element
->
name_directory
);
l_name_file
=
dap_strjoin
(
""
,
l_plugins_root_path
,
"/"
,
l_element
->
name_directory
,
"/manifest.json"
,
NULL
);
...
...
This diff is collapsed.
Click to expand it.
modules/plugins/src/dap_chain_plugins_command.c
View file @
c5fce4f8
...
...
@@ -18,7 +18,6 @@ void dap_chain_plugins_command_create(void){
}
int
dap_chain_plugins_command_handler
(
int
a_argc
,
char
**
a_argv
,
void
*
a_arg_func
,
char
**
a_str_reply
){
(
void
)
a_arg_func
;
log_it
(
L_NOTICE
,
"Handler cmd"
);
enum
{
CMD_NONE
,
CMD_LIST
,
CMD_SHOW_NAME
,
CMD_RESTART
,
CMD_RELOAD_NAME
};
...
...
@@ -47,7 +46,6 @@ int dap_chain_plugins_command_handler(int a_argc, char **a_argv, void *a_arg_fun
break
;
case
CMD_SHOW_NAME
:
dap_chain_node_cli_find_option_val
(
a_argv
,
l_arg_index
,
a_argc
,
"--name"
,
&
l_name_plugin
);
log_it
(
L_NOTICE
,
"name plugin: %s"
,
l_name_plugin
);
LL_SEARCH
(
dap_chain_plugins_manifests_get_list
(),
l_element
,
l_name_plugin
,
dap_chain_plugins_manifest_name_cmp
);
if
(
l_element
!=
NULL
){
char
*
l_dep
=
dap_chain_plugins_manifests_get_list_dependencyes
(
l_element
);
...
...
This diff is collapsed.
Click to expand it.