Skip to content

Commit

Permalink
Merge pull request mozilla-services#2097 from uberj/bug_1021850
Browse files Browse the repository at this point in the history
Fail with a useful error message and add unzip to required packages
  • Loading branch information
rhelmer committed Jun 10, 2014
2 parents d33d0e6 + c402acf commit fb33ef3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions puppet/manifests/socorro.pp
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@
'mod_wsgi',
'memcached',
'daemonize',
'unzip',
]:
ensure => latest
}
Expand Down
4 changes: 3 additions & 1 deletion socorro/unittest/cron/jobs/test_symbolsunpack.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,9 @@ def test_symbols_unpack_subdirectories_careful_dir_cleanup(self):

information = self._load_structure()
assert information['symbols-unpack']
assert not information['symbols-unpack']['last_error']
assert not information['symbols-unpack']['last_error'], (
information['symbols-unpack']['last_error']
)
assert information['symbols-unpack']['last_success']

ok_(os.listdir(self.temp_destination_directory), 'empty')
Expand Down

0 comments on commit fb33ef3

Please sign in to comment.