Skip to content

Commit

Permalink
gcp max user code fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wardviaene committed Nov 15, 2024
1 parent 20da0cc commit b2ad25c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions licensing/license.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,11 @@ func getMaxUsers(storage storage.ReadWriter, cloudType, instanceType string) int
Timeout: 5 * time.Second,
}
return GetMaxUsersDigitalOceanBYOL(client, storage)
case "gcp":
client := http.Client{
Timeout: 5 * time.Second,
}
return GetMaxUsersGCPBYOL(client, storage)
case "":
client := http.Client{
Timeout: 5 * time.Second,
Expand Down

0 comments on commit b2ad25c

Please sign in to comment.