FAQ | This is a LIVE service | Changelog

Skip to content

fix: remove super call causing error

Hal Blackburn requested to merge fix-super-error into master

The super call in the EnumerationsController.class_eval block is failing with an error in ArchivesSpace 3.4.1:

org.jruby.rack.RackInitializationException: implicit argument passing of super from method defined by define_method() is not supported. Specify all arguments explicitly.

It seems like this super call would have no effect in the past when it did work, as unless I'm misunderstanding the code, there's no overridden method to invoke — we're passing a block to the class_eval method.

Merge request reports