We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abbea5f commit 2e6f70aCopy full SHA for 2e6f70a
nonebot_bison/scheduler/scheduler.py
@@ -130,14 +130,12 @@ async def exec_fetch(self):
130
131
def insert_new_schedulable(self, platform_name: str, target: Target):
132
self.pre_weight_val += 1000
133
- new_schedulable = Schedulable(platform_name, target, 1000)
+ self.schedulable_list.append(Schedulable(platform_name, target, 1000))
134
135
if platform_manager[platform_name].use_batch:
136
- new_schedulable.use_batch = True
137
self.batch_platform_name_targets_cache[platform_name].append(target)
138
self._refresh_batch_api_target_cache()
139
140
- self.schedulable_list.append(new_schedulable)
141
logger.info(f"insert [{platform_name}]{target} to Schduler({self.scheduler_config.name})")
142
143
def delete_schedulable(self, platform_name, target: Target):
0 commit comments