Skip to content

Commit 2e6f70a

Browse files
committed
⏪ scheduler部分的更改独立pr
1 parent abbea5f commit 2e6f70a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

nonebot_bison/scheduler/scheduler.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -130,14 +130,12 @@ async def exec_fetch(self):
130130

131131
def insert_new_schedulable(self, platform_name: str, target: Target):
132132
self.pre_weight_val += 1000
133-
new_schedulable = Schedulable(platform_name, target, 1000)
133+
self.schedulable_list.append(Schedulable(platform_name, target, 1000))
134134

135135
if platform_manager[platform_name].use_batch:
136-
new_schedulable.use_batch = True
137136
self.batch_platform_name_targets_cache[platform_name].append(target)
138137
self._refresh_batch_api_target_cache()
139138

140-
self.schedulable_list.append(new_schedulable)
141139
logger.info(f"insert [{platform_name}]{target} to Schduler({self.scheduler_config.name})")
142140

143141
def delete_schedulable(self, platform_name, target: Target):

0 commit comments

Comments
 (0)