Skip to content

Commit

Permalink
fix: reuse global variable
Browse files Browse the repository at this point in the history
Signed-off-by: Rajiv Harlalka <[email protected]>
  • Loading branch information
rajivharlalka committed Aug 25, 2024
1 parent d4f2001 commit 909197c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ func LoadGhEnv() {
gh_pvtKey = os.Getenv("GH_PRIVATE_ID")
org_name = os.Getenv("GH_ORG_NAME")
org_team = os.Getenv("GH_ORG_TEAM_SLUG")
gh_org_admin_token := os.Getenv("GH_ORG_ADMIN_TOKEN")
gh_org_admin_token = os.Getenv("GH_ORG_ADMIN_TOKEN")

jwt_secret = os.Getenv("JWT_SECRET")

Expand Down

0 comments on commit 909197c

Please sign in to comment.