Skip to content

Commit c2940f4

Browse files
authored
[Bugfix] Fix incorrect directory (#287)
1 parent 31ffffa commit c2940f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

service/service.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1073,7 +1073,7 @@ func (s *Service) CreateClient(endpoints []string, connectionType ConnectionType
10731073
func (s *Service) getGlobalToken() (string, error) {
10741074
p := s.GetLocalFolder()
10751075

1076-
token, err := ioutil.ReadFile(path.Join(p, definitions.ArangodJWTSecretFolderName, definitions.ArangodJWTSecretActive))
1076+
token, err := ioutil.ReadFile(path.Join(p, definitions.ArangodJWTSecretActive))
10771077
if err != nil {
10781078
return "", err
10791079
}

0 commit comments

Comments
 (0)