Skip to content

Commit

Permalink
Merge pull request #7 from fleetbase/dev-v0.0.8
Browse files Browse the repository at this point in the history
increase timeout limit when creating registry user
  • Loading branch information
roncodes authored Jul 20, 2024
2 parents 6b38d3c + 3fcc5ae commit ba54873
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fleetbase/registry-bridge",
"version": "0.0.7",
"version": "0.0.8",
"description": "Internal Bridge between Fleetbase API and Extensions Registry",
"keywords": [
"fleetbase-extension",
Expand Down
2 changes: 1 addition & 1 deletion extension.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Registry Bridge",
"version": "0.0.7",
"version": "0.0.8",
"description": "Internal Bridge between Fleetbase API and Extensions Registry",
"repository": "https://github.com/fleetbase/registry-bridge",
"license": "AGPL-3.0-or-later",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fleetbase/registry-bridge-engine",
"version": "0.0.7",
"version": "0.0.8",
"description": "Internal Bridge between Fleetbase API and Extensions Registry",
"fleetbase": {
"route": "extensions"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,7 @@ public function checkPublishAllowed(RegistryAuthRequest $request)
*/
public function createRegistryUser(Request $request)
{
set_time_limit(120 * 6);
$password = $request->input('password');
if (!$password) {
return response()->error('Password is required.');
Expand Down

0 comments on commit ba54873

Please sign in to comment.