Fix backtrace filtering for producer own code
Using /producer-\w+ as pattern is incorrect, we have no guarantee that the canonical repository or gem name will be included in the install path. Just use /producer pattern to match lib files or executables.
This commit is contained in:
@@ -2,7 +2,7 @@ module Producer
|
||||
module Core
|
||||
class ErrorFormatter
|
||||
FILTERS = [
|
||||
/\/producer-\w+/,
|
||||
/\/producer/,
|
||||
Regexp.new(RbConfig::CONFIG['rubylibdir']),
|
||||
/\/net-ssh/,
|
||||
/\/net-sftp/
|
||||
|
Reference in New Issue
Block a user