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

Функция rpcf_user5_set_next_tp зависает в ожидании ответа и не работает параметр timeout #5

Closed
alezkv opened this issue Oct 15, 2015 · 5 comments
Assignees
Labels
Milestone

Comments

@alezkv
Copy link

alezkv commented Oct 15, 2015

Пытаюсь выполнить следующий файл:

<?php
$urfa = URFAClient::init(array(
    'login'    => 'login',
    'password' => 'password',
    'address'  => 'address',
    'timeout'  => 10,
    'admin'    => FALSE,
    'log'      => TRUE,
));
$result = $urfa->rpcf_user5_set_next_tp(array(
    'tp_link' => 2,
    'tp_next' => 2,
));
print_r($result);
print_r(URFAClient::trace_log());

При выполнении скрипт "висит" и ничего не выводит.
По тайм ауту тоже не завершается.

@k-shym
Copy link
Owner

k-shym commented Oct 15, 2015

Какая версия ядра UTM5?

@alezkv
Copy link
Author

alezkv commented Oct 15, 2015

5.3-001

@k-shym
Copy link
Owner

k-shym commented Oct 15, 2015

Ошибка в описании функции, не хватает account_id первым параметром:

  <function name="rpcf_user5_set_next_tp" id="-0x15006">
    <input>
      <integer name="account_id" />
      <integer name="tp_link" default="0"/>
      <integer name="tp_next" default="0"/>
    </input>
    <output>
      <integer name="result"/>
    </output>
  </function>

Данная проблема наблюдается и в последней версии 5.3-003 (update5). Позже напишу тесты для данной проблемы.

@k-shym k-shym added the bug label Oct 15, 2015
@k-shym k-shym self-assigned this Oct 15, 2015
@alezkv
Copy link
Author

alezkv commented Oct 15, 2015

Спасибо, с новым описанием функции все работает.
Вопрос остался с таймаутом на неправильном описании.

@k-shym k-shym added this to the v1.0.11 milestone Oct 15, 2015
@k-shym
Copy link
Owner

k-shym commented Oct 15, 2015

Таймаут поправил. Спасибо.

@k-shym k-shym closed this as completed Oct 15, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants