Skip to content

Commit

Permalink
fix order of fiels in eos config for saving space in memory
Browse files Browse the repository at this point in the history
  • Loading branch information
gmgigi96 committed Oct 14, 2022
1 parent 231eb16 commit d5e600e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkg/storage/utils/eosfs/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,9 @@ type Config struct {
// revisions-related operations.
ImpersonateOwnerforRevisions bool `mapstructure:"impersonate_owner_for_revisions"`

// Whether to enable the post create home hook
EnablePostCreateHomeHook bool `mapstructure:"enable_post_create_home_hook"`

// HTTP connections to EOS: max number of idle conns
MaxIdleConns int `mapstructure:"max_idle_conns"`

Expand Down Expand Up @@ -171,6 +174,4 @@ type Config struct {

// Path of the script to run after an user home folder has been created
OnPostCreateHomeHook string `mapstructure:"on_post_create_home_hook"`
// Whether to enable the post create home hook
EnablePostCreateHomeHook bool `mapstructure:"enable_post_create_home_hook"`
}

0 comments on commit d5e600e

Please sign in to comment.