Skip to content

Commit

Permalink
tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
JFriel committed Aug 8, 2024
1 parent 7223717 commit 5424564
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@
using System.Globalization;
using System.IO;

// todo
// check if file exists fist
// make user options pop up
// test encryption
//turn into release engine thing
//respect folder style options
//dump files in same directory pattern as csv extraction

namespace Rdmp.Core.DataExport.DataExtraction.Pipeline.Destinations
{
/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion Rdmp.Core/DataExport/DataRelease/ReleaseEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class ReleaseEngine
public Project Project { get; private set; }
public bool ReleaseSuccessful { get; protected set; }
public List<IExtractionConfiguration> ConfigurationsReleased { get; private set; }
public Dictionary<IExtractionConfiguration, List<ReleasePotential>> ConfigurationsToRelease { get; private set; }
public Dictionary<IExtractionConfiguration, List<ReleasePotential>> ConfigurationsToRelease { get; protected set; }

public ReleaseEngineSettings ReleaseSettings { get; set; }

Expand Down
3 changes: 0 additions & 3 deletions Rdmp.Core/ReusableLibraryCode/AWS/AWSS3.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,6 @@ public bool ObjectExists(string fileKey, string bucketName)

catch (Exception ex)
{
//if (ex.StatusCode == System.Net.HttpStatusCode.NotFound)
// return false;
//throw;
Console.WriteLine(ex.Message);
return false;
}
Expand Down

0 comments on commit 5424564

Please sign in to comment.