markokocic commented on PR #10404:
URL: https://github.com/apache/apisix/pull/10404#issuecomment-1782497377
Hi @monkeyDluffy6017
read_apisix_yaml is indeed called every second, but there's already a guard
in place to skip execution if file is not changed:
``` lua
local last_change_time = attributes.change
if apisix_yaml_ctime == last_change_time then
return
end
```
Log statement is added at the end of the method, after successful execution.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]