Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

задержка запуска джобов #1030

Open
xor2016 opened this issue May 8, 2022 · 1 comment
Open

задержка запуска джобов #1030

xor2016 opened this issue May 8, 2022 · 1 comment

Comments

@xor2016
Copy link
Contributor

xor2016 commented May 8, 2022

$result = trim(getURL($url, 0));

При ожидании Ок от getURL возможна задержка до 45 с. При долгой задаче выдается ошибка, которой нет + задерживается выполнение следующей задачи, если ее время запуска то же( Предлагается не ждать ответа и использовать getURLBackground. Проверено на себе)

        if ($jobs[$i]['COMMANDS'] != '') {
            $url = BASE_URL . '/objects/?system_call=1&job=' . $jobs[$i]['ID'];
            getURLBackground($url);
            /*
            $result = trim(getURL($url, 0));
            $result = preg_replace('/<!--.+-->/is', '', $result);
            if (!preg_match('/OK$/', $result)) {
                DebMes(sprintf('Error executing job %s (%s): %s', $jobs[$i]['TITLE'], $jobs[$i]['ID'], $result) . ' (' . __FILE__ . ')');
            }
            */
        }
@Alexandr-logrus
Copy link
Contributor

рассмотреть возможность передачи в строке юрл параметра COMMANDS
вместо

$job = SQLSelectOne("SELECT * FROM jobs WHERE ID='" . (int)$job . "'");

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants