Skip to content

Commit

Permalink
Merge pull request #293 from openmsa/2.8.13/MSA-13301/ydu
Browse files Browse the repository at this point in the history
MSA-13301 : microservice Update failure with Linux/Generic vendor/model
  • Loading branch information
UBiqube-ydu authored Apr 30, 2024
2 parents c786168 + 308c00c commit b91b021
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions adapters/docker_generic/docker_generic_command.php
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,9 @@ function apply_device_UPDATE($params)
function eval_UPDATE()
{
global $SMS_RETURN_BUF;
foreach ($this->create_list as $create)
foreach ($this->update_list as $update)
{
$conf = $create->evaluate();
$conf = $update->evaluate();
$this->configuration .= "\n";
$this->configuration .= $conf;
$SMS_RETURN_BUF = $this->configuration;
Expand Down
4 changes: 2 additions & 2 deletions adapters/linux_generic/linux_generic_command.php
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,9 @@ function apply_device_UPDATE($params)
function eval_UPDATE()
{
global $SMS_RETURN_BUF;
foreach ($this->create_list as $create)
foreach ($this->update_list as $update)
{
$conf = $create->evaluate();
$conf = $update->evaluate();
$this->configuration .= "\n";
$this->configuration .= $conf;
$SMS_RETURN_BUF = $this->configuration;
Expand Down

0 comments on commit b91b021

Please sign in to comment.