Skip to content

Commit

Permalink
feat: init Config in BrokerageDataDownloader (#8482)
Browse files Browse the repository at this point in the history
  • Loading branch information
Romazes authored Dec 26, 2024
1 parent 2bdddc9 commit eca4f5b
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion DownloaderDataProvider/Models/BrokerageDataDownloader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,15 @@ public class BrokerageDataDownloader : IDataDownloader
/// </summary>
public BrokerageDataDownloader()
{
var liveNodeConfiguration = new LiveNodePacket() { Brokerage = Config.Get("data-downloader-brokerage") };
var liveNodeConfiguration = new LiveNodePacket()
{
Brokerage = Config.Get("data-downloader-brokerage"),
UserToken = Globals.UserToken,
UserId = Globals.UserId,
ProjectId = Globals.ProjectId,
OrganizationId = Globals.OrganizationID,
Version = Globals.Version,
};

try
{
Expand Down

0 comments on commit eca4f5b

Please sign in to comment.