Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
goSDN
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Contributor 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
danet
goSDN
Merge requests
!479
Resolve "The model stored in the plugin is increasing in size"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "The model stored in the plugin is increasing in size"
298-the-model-stored-in-the-plugin-is-increasing-in-size
into
master
Overview
1
Commits
3
Pipelines
7
Changes
14
All threads resolved!
Hide all comments
Merged
Ghost User
requested to merge
298-the-model-stored-in-the-plugin-is-increasing-in-size
into
master
1 year ago
Overview
1
Commits
3
Pipelines
7
Changes
14
All threads resolved!
Hide all comments
Expand
Description
Related Issue
Motivation and Context
How Has This Been Tested?
Screenshots (if appropriate):
Types of changes
Bug fix (non-breaking change which fixes an issue)
New feature (non-breaking change which adds functionality)
Breaking change (fix or feature that would cause existing functionality to change)
Checklist:
My code follows the code style of this project.
My change requires a change to the documentation.
I have updated the documentation accordingly.
I have read the
CONTRIBUTING
document.
I have added tests to cover my changes.
All new and existing tests passed.
Closes
#298 (closed)
0
0
Merge request reports
Compare
master
version 5
9caeefd7
1 year ago
version 4
520ba133
1 year ago
version 3
69f30f6b
1 year ago
version 2
1382e0b2
1 year ago
version 1
fdbafd79
1 year ago
master (base)
and
latest version
latest version
5b293acb
3 commits,
1 year ago
version 5
9caeefd7
3 commits,
1 year ago
version 4
520ba133
3 commits,
1 year ago
version 3
69f30f6b
2 commits,
1 year ago
version 2
1382e0b2
1 commit,
1 year ago
version 1
fdbafd79
1 commit,
1 year ago
14 files
+
150
−
43
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
14
Search (e.g. *.vue) (Ctrl+P)
controller/interfaces/plugin/plugin.go
+
3
−
5
Options
@@ -27,11 +27,9 @@ const (
@@ -27,11 +27,9 @@ const (
//CREATED state describes a plugin which has been created but is not yet
//CREATED state describes a plugin which has been created but is not yet
//built.
//built.
CREATED
State
=
iota
CREATED
State
=
iota
// BUILT state describes a plugin which is built and can be loaded into the
// INITIALIZED state describes a plugin which is running and has been
// controller.
// initialized with the model data of the associated network element.
BUILT
INITIALIZED
// LOADED state describes a plugin which is running within the controller.
LOADED
// FAULTY state describes a plugin which couldn't be built or loaded.
// FAULTY state describes a plugin which couldn't be built or loaded.
FAULTY
FAULTY
)
)
Loading