Skip to content

Commit

Permalink
Merge pull request #4915 from coollabsio/next
Browse files Browse the repository at this point in the history
v4.0.0-beta.387
  • Loading branch information
andrasbacsai authored Jan 22, 2025
2 parents ce8b662 + 52a38f2 commit 86e14f3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/Livewire/Project/Database/Redis/General.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,12 @@ public function submit()
if (version_compare($this->redis_version, '6.0', '>=')) {
$this->database->runtime_environment_variables()->updateOrCreate(
['key' => 'REDIS_USERNAME'],
['value' => $this->redis_username, 'standalone_redis_id' => $this->database->id]
['value' => $this->redis_username, 'resourceable_id' => $this->database->id]
);
}
$this->database->runtime_environment_variables()->updateOrCreate(
['key' => 'REDIS_PASSWORD'],
['value' => $this->redis_password, 'standalone_redis_id' => $this->database->id]
['value' => $this->redis_password, 'resourceable_id' => $this->database->id]
);

$this->database->save();
Expand Down
2 changes: 1 addition & 1 deletion config/constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

return [
'coolify' => [
'version' => '4.0.0-beta.386',
'version' => '4.0.0-beta.387',
'self_hosted' => env('SELF_HOSTED', true),
'autoupdate' => env('AUTOUPDATE'),
'base_config_path' => env('BASE_CONFIG_PATH', '/data/coolify'),
Expand Down
4 changes: 2 additions & 2 deletions versions.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"coolify": {
"v4": {
"version": "4.0.0-beta.386"
"version": "4.0.0-beta.387"
},
"nightly": {
"version": "4.0.0-beta.387"
"version": "4.0.0-beta.388"
},
"helper": {
"version": "1.0.5"
Expand Down

0 comments on commit 86e14f3

Please sign in to comment.