Kaydet (Commit) 8b99e716 authored tarafından mertcelen's avatar mertcelen

Fix for LMYS-107

Extension background jobs fixed.
üst 25365d99
<?php
namespace App\Models\Jobs;
namespace App\Jobs;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
......@@ -64,11 +64,11 @@ class ExtensionJob implements ShouldQueue
$output = rootSystem()->runCommand($command);
system_log(7, "EXTENSION_BACKGROUND_RUN", [
"extension_id" => $this->extension->id,
"server_id" => $this->server->id,
"target_name" => $this->function,
]);
// system_log(7, "EXTENSION_BACKGROUND_RUN", [
// "extension_id" => $this->extension->id,
// "server_id" => $this->server->id,
// "target_name" => $this->function,
// ]);
$code = 200;
try {
......
......@@ -751,7 +751,7 @@
function afterUserAdd(response) {
var json = JSON.parse(response);
$("#add_user button[type='submit']").attr("disabled","true")
getUserList();
//getUserList();
}
$(function () {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment