Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
K
koko
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
koko
Commits
676c8ec8
Commit
676c8ec8
authored
Nov 01, 2019
by
Eric
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] optimize memory usage
parent
3ed7a99f
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
9 deletions
+5
-9
config.go
pkg/config/config.go
+4
-8
init.go
pkg/service/init.go
+1
-1
No files found.
pkg/config/config.go
View file @
676c8ec8
...
...
@@ -172,18 +172,14 @@ var Conf = &Config{
ZipTmpPath
:
"/tmp"
,
}
func
SetConf
(
conf
*
Config
)
{
func
SetConf
(
conf
Config
)
{
lock
.
Lock
()
defer
lock
.
Unlock
()
Conf
=
conf
Conf
=
&
conf
}
func
GetConf
()
*
Config
{
func
GetConf
()
Config
{
lock
.
RLock
()
defer
lock
.
RUnlock
()
var
conf
Config
if
confBytes
,
err
:=
json
.
Marshal
(
Conf
);
err
==
nil
{
_
=
json
.
Unmarshal
(
confBytes
,
&
conf
)
}
return
&
conf
return
*
Conf
}
pkg/service/init.go
View file @
676c8ec8
...
...
@@ -87,7 +87,7 @@ func MustLoadServerConfigOnce() {
func
LoadConfigFromServer
()
(
err
error
)
{
conf
:=
config
.
GetConf
()
_
,
err
=
authClient
.
Get
(
TerminalConfigURL
,
conf
)
_
,
err
=
authClient
.
Get
(
TerminalConfigURL
,
&
conf
)
if
err
!=
nil
{
return
err
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment