-
Notifications
You must be signed in to change notification settings - Fork 0
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
A yamaliev/hw19 #1207
base: AYamaliev/main
Are you sure you want to change the base?
A yamaliev/hw19 #1207
Conversation
app/nginx/Dockerfile
Outdated
@@ -0,0 +1,5 @@ | |||
FROM nginx |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
В базовом образе nginx уже всё это есть, нет необходимость создавать свой. Просто используйте базовый.
if ($model->load(Yii::$app->request->post()) && $model->validate()) { | ||
$message = ['start_time' => $model->start_time, 'end_time' => $model->end_time]; | ||
|
||
$rabbit = new RabbitMq('bank_statement'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Мы каждый раз создаём соединение с кроликом. Более того, создаём класс внутри друго-го класса. Создайте это единожды и передайте сюда как зависимость через конструктор или агрумент этого метода.
*/ | ||
public function actionIndex(): void | ||
{ | ||
$rabbit = new RabbitMq('bank_statement'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Мы каждый раз создаём соединение с кроликом. Более того, создаём класс внутри друго-го класса. Создайте это единожды и передайте сюда как зависимость через конструктор или агрумент этого метода.
public function actionIndex(): void | ||
{ | ||
$rabbit = new RabbitMq('bank_statement'); | ||
(new RabbitMqConsumer($rabbit))(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Лучше сделать метод для запуска и тогда можно будет создать экземпляр этого класса один раз и передать сюда как зависимость.
$message = ['start_time' => $model->start_time, 'end_time' => $model->end_time]; | ||
|
||
$rabbit = new RabbitMq('bank_statement'); | ||
(new RabbitMqProducer($rabbit))($message); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Лучше сделать метод для запуска и тогда можно будет создать экземпляр этого класса один раз и передать сюда как зависимость.
No description provided.