@@ -28,7 +28,7 @@ class QueueAwakerTask : RabbitMQTask<JObject>
28
28
private readonly SceneDetectionTask _sceneDetectionTask ;
29
29
private readonly PythonCrawlerTask _pythonCrawlerTask ;
30
30
private readonly CreateBoxTokenTask _createBoxTokenTask ;
31
- private readonly UpdateBoxTokenTask _updateBoxTokenTask ;
31
+ // private readonly UpdateBoxTokenTask _updateBoxTokenTask;
32
32
private readonly BuildElasticIndexTask _buildElasticIndexTask ;
33
33
private readonly CleanUpElasticIndexTask _cleanUpElasticIndexTask ;
34
34
// private readonly ExampleTask _exampleTask;
@@ -42,7 +42,8 @@ public QueueAwakerTask(RabbitMQConnection rabbitMQ, DownloadPlaylistInfoTask dow
42
42
TranscriptionTask transcriptionTask , ProcessVideoTask processVideoTask ,
43
43
// GenerateVTTFileTask generateVTTFileTask,
44
44
SceneDetectionTask sceneDetectionTask ,
45
- CreateBoxTokenTask createBoxTokenTask , UpdateBoxTokenTask updateBoxTokenTask , PythonCrawlerTask pythonCrawlerTask ,
45
+ CreateBoxTokenTask createBoxTokenTask , // UpdateBoxTokenTask updateBoxTokenTask,
46
+ PythonCrawlerTask pythonCrawlerTask ,
46
47
BuildElasticIndexTask buildElasticIndexTask , CleanUpElasticIndexTask cleanUpElasticIndexTask ,
47
48
48
49
DescribeVideoTask describeVideoTask , // DescribeImageTask describeImageTask,ExampleTask exampleTask,
@@ -58,7 +59,7 @@ public QueueAwakerTask(RabbitMQConnection rabbitMQ, DownloadPlaylistInfoTask dow
58
59
_sceneDetectionTask = sceneDetectionTask ;
59
60
_pythonCrawlerTask = pythonCrawlerTask ;
60
61
_createBoxTokenTask = createBoxTokenTask ;
61
- _updateBoxTokenTask = updateBoxTokenTask ;
62
+ // _updateBoxTokenTask = updateBoxTokenTask;
62
63
_buildElasticIndexTask = buildElasticIndexTask ;
63
64
_cleanUpElasticIndexTask = cleanUpElasticIndexTask ;
64
65
_describeVideoTask = describeVideoTask ;
@@ -145,7 +146,7 @@ private async Task PendingJobs()
145
146
146
147
147
148
// Update Box Token every few hours
148
- _updateBoxTokenTask . Publish ( "" ) ;
149
+ // _updateBoxTokenTask.Publish("");
149
150
150
151
//We will use these outside of the DB scope
151
152
// List<String> todoVTTs ;
0 commit comments