Remove Sentry scope setup for now

This commit is contained in:
Ske 2019-07-16 01:28:55 +02:00
parent f5b6ce4587
commit 2aae92406a

View File

@ -92,7 +92,6 @@ namespace PluralKit.Bot
.AddTransient<MessageStore>() .AddTransient<MessageStore>()
.AddTransient<SwitchStore>() .AddTransient<SwitchStore>()
.AddScoped<IHub>(_ => HubAdapter.Instance)
.BuildServiceProvider(); .BuildServiceProvider();
} }
class Bot class Bot
@ -102,15 +101,13 @@ namespace PluralKit.Bot
private CommandService _commands; private CommandService _commands;
private ProxyService _proxy; private ProxyService _proxy;
private Timer _updateTimer; private Timer _updateTimer;
private IHub _hub;
public Bot(IServiceProvider services, IDiscordClient client, CommandService commands, ProxyService proxy, IHub hub) public Bot(IServiceProvider services, IDiscordClient client, CommandService commands, ProxyService proxy)
{ {
this._services = services; this._services = services;
this._client = client as DiscordShardedClient; this._client = client as DiscordShardedClient;
this._commands = commands; this._commands = commands;
this._proxy = proxy; this._proxy = proxy;
_hub = hub;
} }
public async Task Init() public async Task Init()
@ -176,7 +173,6 @@ namespace PluralKit.Bot
// until we properly connect. TODO: can we do this without chucking away a bunch of messages? // until we properly connect. TODO: can we do this without chucking away a bunch of messages?
if (_client.CurrentUser == null) return; if (_client.CurrentUser == null) return;
using (SentrySdk.PushScope())
using (var serviceScope = _services.CreateScope()) using (var serviceScope = _services.CreateScope())
{ {
SentrySdk.AddBreadcrumb("event.message", data: new Dictionary<string, string>() SentrySdk.AddBreadcrumb("event.message", data: new Dictionary<string, string>()