summaryrefslogtreecommitdiff
path: root/bin
AgeCommit message (Collapse)Author
2017-08-10Significant rubocop fixups.Steve Kemp
This merge-request contains almost entirely mechanical changes, with a few exceptions: * I changed `do_ipv4` and `do_ipv6` to `ipv4` and `ipv6` respectively. * This fixed a warning about normal-casing. * I changed a test-case to compare against both `Integer` and `Fixnum` * Suspect this is a ruby-versionism. The tests continue to pass, so I believe this is safe to merge, but of course it is still not 100%: lib/custodian/queue.rb:135:21: W: Assignment in condition - you probably meant to use ==. added = true ^ lib/custodian/protocoltest/ssl.rb:218:5: W: Do not shadow rescued Exceptions rescue OpenSSL::SSL::SSLError => err ... ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ lib/custodian/protocoltest/ssl.rb:286:5: W: Do not shadow rescued Exceptions rescue OpenSSL::SSL::SSLError => err ... ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ lib/custodian/protocoltest/http.rb:307:7: C: Assignment Branch Condition size for run_test is too high. [84.53/72] def run_test ^^^ lib/custodian/protocoltest/http.rb:307:7: C: Cyclomatic complexity for run_test is too high. [22/19] def run_test ^^^ lib/custodian/protocoltest/http.rb:307:7: C: Method has too many lines. [97/87] def run_test ... ^^^^^^^^^^^^ lib/custodian/protocoltest/http.rb:307:7: C: Perceived complexity for run_test is too high. [23/21] def run_test In short this takes care of _most_ of the warnings, but updates requiring significant code-change have not been applied.
2016-04-22Updated to fix rubocop warnings.Steve Kemp
2016-01-18Updated the queue-handling.Steve Kemp
We now use a zset to store our pending tests. This means that jobs are only in the queue once - no duplicates are allowed. This closes #12428.
2015-12-18Removed references and support for beanstalkd.Steve Kemp
The beanstalkd queue used to be used in the past, and we later added support for Redis via a simple abstraction layer. But now we've no longer tested and used beanstalkd for over a year, and the client-libraries are no longer available as native Debian packages. With that in mind we've excised the code, although left the abstraction-class in-place.
2015-08-25Force default encoding to be UTF-8.Steve Kemp
This shouldn't be required, but adding it is harmless and indicates our intent cleanly.
2015-03-09Moved usage-information to foot of script.Steve Kemp
This removes the nasty self-parsing of the script to generate the help/manual output. I've also removed global-variables and made the code almost-100% warning free.
2015-03-09Remove spaces inside blocks.Steve Kemp
2015-03-09More minor space fixupsSteve Kemp
2015-03-09Whitespace fixups.Steve Kemp
These were all identified and suggested by rubocop.
2015-03-09Removed spaces inside parenthesis.Steve Kemp
2015-03-09Prefer single-quotes when you don't need interpolation.Steve Kemp
So "foo" is less good than 'foo'.
2015-03-09Don't use parenthesis aroudn conditions in an if.Steve Kemp
2015-03-09Do not use parentheses for method calls with no arguments.Steve Kemp
This is neater. Flagged by rubocop
2015-03-09Avoid redundent ".to_s" methods.Steve Kemp
These are not required if the argument is string already, or has a _to_s method which will be automatically invoked by magic.
2015-03-09Use long-namesSteve Kemp
Instead of "$0" use $PROGRAM_NAME, instead of $! use "$LOAD_PATH". This is more explicit and less-magic. Flagged by rubocop
2015-02-05Fixed punctuation on commentSteve Kemp
2015-02-05Updated documentation to match reality.Steve Kemp
(This mostly means the removal of --logfile.)
2015-02-05More simplification - don't pass state around.Steve Kemp
Rather than passing our settings-object around, as well as specific settings that are read from it, just pass the object. The worker can read the settings directly if/when it needs to.
2015-02-05Simplify the flushing of queues.Steve Kemp
Now that we've moved to using redis by default the handling of queue-flushing needs to change. We can simply get rid of the busy-wait and run a redis "del" operation. With that in mind we've moved the flushing logic to our queue abstraction layer, and simplified our queue-helper script.
2015-02-04Hint to ruby that rubygems should be loaded.Steve Kemp
This allows our redis-library to be used.
2015-01-21Don't hard-wire redis as the queue-type.Steve Kemp
Read it from the configuration-file and don't expose the server flag which is now bogus.
2015-01-19Updated to use our queue-abstraction.Steve Kemp
This means we can queue/dequeue to either Redis or Beanstalkd.
2015-01-13Updated to include search-path.Steve Kemp
This is a temporary fix for local-testing.
2015-01-13Avoid hard-wiring 1.8 rubySteve Kemp
2013-05-21 Ensure that jobs last for 300 seconds, rather than the default of 120.Steve Kemp
This allows job.reserve() to keep a job for a "long" time.
2013-04-23 Allow --queue to specify the beanstalkd tube.Steve Kemp
2012-12-12 The dequeuing process passes the settings to the wroker.Steve Kemp
2012-12-06 Updated documentation in a minor fashion.Steve Kemp
2012-12-06 Change hostname1 -> hostname in the doc since we only allow one host to be ↵Steve Kemp
pinged.
2012-12-06 Added script to report on parse failures.Steve Kemp
2012-12-06 The --monitor flag now allows a threshold to be specified, and noSteve Kemp
longer invokes mauvealert directly. Instead the exit code of the script will be used to report success/failure.
2012-11-30 Removed --repeat.Steve Kemp
2012-11-26 Updated to make the requirement of redis soft, as it will probably beSteve Kemp
not used.
2012-11-26 Explicitly watch a "tube" - a named queue - to avoid stomping onSteve Kemp
anything else running under beanstalkd.
2012-11-25 Removed references to sentinel.Steve Kemp
2012-11-24 Removed the trailing ".rb" from our 'require ...' lines.Steve Kemp
2012-11-24 Use the alert-factory, rather than hard-coding our mauve-alert.Steve Kemp
2012-11-24 Remove the --timeout parameter.Steve Kemp
Abort if parsing fails.
2012-11-23 We no longer refer to JSON.Steve Kemp
2012-11-23 Fixed the name of the settings class.Steve Kemp
2012-11-23 Read the server address:port from the settings object. Along with the ↵Steve Kemp
filename if appropriate for logging.
2012-11-23 Updated the API for the parser to split parse_file into parse_lines.Steve Kemp
2012-11-22 Updated to rename the class.Steve Kemp
2012-11-22 Removed the reference to the alerter - that comes from the worker.Steve Kemp
2012-11-22 Parse the configuration file into arrays of jobs, via our test-factorySteve Kemp
2012-11-22 Moved the worker into the custodian namespace.Steve Kemp
2012-11-22 Moved TestFactory to the custodian-namespace.Steve Kemp
2012-11-22 Renamed.Steve Kemp
2012-11-22 Renamed class Custodian -> Custodian/WorkerSteve Kemp
2012-11-22 Updated to stub out more code.Steve Kemp