Skip to content

Commit

Permalink
fs_metadata: adjusted timeout and updated schema description
Browse files Browse the repository at this point in the history
  • Loading branch information
jstucke committed Oct 5, 2023
1 parent 60eef67 commit 4f17da1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ class AnalysisPlugin(AnalysisPluginV0, AnalysisBasePluginAdapterMixin):

class Schema(BaseModel):
files: List[FileMetadata] = Field(
description='A list of metadata dictionaries (each representing the results of a contained file)',
description='An array of metadata objects (each representing the results of a contained file)',
)

def __init__(self):
Expand All @@ -122,6 +122,7 @@ def __init__(self):
),
version='1.0.0',
Schema=self.Schema,
timeout=30,
)
super().__init__(metadata=metadata)

Expand Down

0 comments on commit 4f17da1

Please sign in to comment.