Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • Issue/1788-extractionCronjob
  • Issue/1792-newMetadataStructure
  • Issue/2518-docs
  • Issue/2769-migrateCron
  • dev
  • gitkeep
  • main
  • test
  • v0.1.0
  • v0.1.1
  • v0.1.10
  • v0.1.11
  • v0.1.2
  • v0.1.3
  • v0.1.4
  • v0.1.5
  • v0.1.6
  • v0.1.7
  • v0.1.8
  • v0.1.9
20 results

Target

Select target project
  • coscine/backend/scripts/metadataextractorcron
1 result
Select Git revision
  • Issue/1788-extractionCronjob
  • Issue/1792-newMetadataStructure
  • Issue/2518-docs
  • Issue/2769-migrateCron
  • dev
  • gitkeep
  • main
  • test
  • v0.1.0
  • v0.1.1
  • v0.1.10
  • v0.1.11
  • v0.1.2
  • v0.1.3
  • v0.1.4
  • v0.1.5
  • v0.1.6
  • v0.1.7
  • v0.1.8
  • v0.1.9
20 results
Show changes
Commits on Source (2)
......@@ -70,7 +70,7 @@ public class CoscineMetadataExtractor : IMetadataExtractor
continue;
}
Console.WriteLine($"Iterating over {file.Key} on {resourceId}");
CreateMetadataSetsIfDontExist(resourceId.ToString(), file, fileInfos);
CreateMetadataSetsIfDontExist(resourceId.ToString(), file);
if (!HasCurrentMetadataExtracted(resourceId.ToString(), file))
{
Console.WriteLine($"Extracting metadata for {file.Key} on {resourceId}");
......@@ -104,7 +104,7 @@ public class CoscineMetadataExtractor : IMetadataExtractor
return fileInfos;
}
private void CreateMetadataSetsIfDontExist(string resourceId, ResourceEntry entry, IEnumerable<ResourceEntry> fileInfos)
private void CreateMetadataSetsIfDontExist(string resourceId, ResourceEntry entry)
{
var existingGraphs = _rdfStoreConnector.GetMetadataIds(resourceId, entry.Key);
if (!existingGraphs.Any())
......
......@@ -5,7 +5,7 @@
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>0.1.7</Version></PropertyGroup>
<Version>0.1.8</Version></PropertyGroup>
<ItemGroup>
<PackageReference Include="Coscine.Database" Version="*-*" />
......
......@@ -4,7 +4,7 @@
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>0.1.7</Version></PropertyGroup>
<Version>0.1.8</Version></PropertyGroup>
<ItemGroup>
......
......@@ -12,7 +12,7 @@
<Description>A library generated from a OpenAPI doc</Description>
<Copyright>No Copyright</Copyright>
<RootNamespace>Org.OpenAPITools</RootNamespace>
<Version>0.1.7</Version>
<Version>0.1.8</Version>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\Org.OpenAPITools.xml</DocumentationFile>
<RepositoryUrl>https://github.com/GIT_USER_ID/GIT_REPO_ID.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
......