ctubbsii commented on code in PR #2687: URL: https://github.com/apache/accumulo/pull/2687#discussion_r869640962
########## server/monitor/src/main/resources/org/apache/accumulo/monitor/resources/js/scans.js: ########## @@ -18,6 +18,8 @@ */ "use strict"; +var scansList; Review Comment: Are they referencing the same value, or just reusing a variable name? If they are just reusing a variable name, both can be locally scoped. If the idea is to declare a global in one method, and reading the variable in the other, then this change is probably what we want. I'm not sure which is the case without looking at the other method. -- 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]
