Add a vulnerability_found event for notice when we detect a vuln
Fixes #637 Note: This PR does *not* actually raise the event; it merely adds support for it
This commit is contained in:
parent
37118423a5
commit
d7ace69fe3
2 changed files with 1 additions and 2 deletions
|
@ -14,7 +14,6 @@ from alembic import op
|
||||||
import sqlalchemy as sa
|
import sqlalchemy as sa
|
||||||
from util.migrate import UTF8LongText
|
from util.migrate import UTF8LongText
|
||||||
|
|
||||||
|
|
||||||
def upgrade(tables):
|
def upgrade(tables):
|
||||||
### commands auto generated by Alembic - please adjust! ###
|
### commands auto generated by Alembic - please adjust! ###
|
||||||
op.add_column('repositorynotification', sa.Column('event_config_json', UTF8LongText, nullable=False))
|
op.add_column('repositorynotification', sa.Column('event_config_json', UTF8LongText, nullable=False))
|
||||||
|
|
|
@ -95,7 +95,7 @@ def __create_subtree(repo, structure, creator_username, parent, tag_map):
|
||||||
for path_builder in paths:
|
for path_builder in paths:
|
||||||
path = path_builder(new_image.storage.uuid)
|
path = path_builder(new_image.storage.uuid)
|
||||||
store.put_content('local_us', path, checksum)
|
store.put_content('local_us', path, checksum)
|
||||||
|
|
||||||
new_image.security_indexed = False
|
new_image.security_indexed = False
|
||||||
new_image.security_indexed_engine = maxsize
|
new_image.security_indexed_engine = maxsize
|
||||||
new_image.save()
|
new_image.save()
|
||||||
|
|
Reference in a new issue