Skip to content

Commit

Permalink
Merge pull request #105 from Shaswat975/redis-server-down-error
Browse files Browse the repository at this point in the history
Made REDIS Server Optional
  • Loading branch information
hakasapl authored Jun 21, 2024
2 parents dcd4409 + 887a34c commit 7302bca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/init.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@

// Creates REDIS service
$REDIS = new UnityRedis(
$CONFIG["redis"]["host"],
$CONFIG["redis"]["port"]
$CONFIG["redis"]["host"] ?? "",
$CONFIG["redis"]["port"] ?? ""
);

// Creates LDAP service
Expand Down
1 change: 1 addition & 0 deletions tools/docker-dev/unity-web-portal
Submodule unity-web-portal added at 7087b7

0 comments on commit 7302bca

Please sign in to comment.