jedcunningham commented on a change in pull request #15997:
URL: https://github.com/apache/airflow/pull/15997#discussion_r637359766



##########
File path: airflow/utils/db.py
##########
@@ -72,7 +72,7 @@ def add_default_pool_if_not_exists(session=None):
     if not Pool.get_pool(Pool.DEFAULT_POOL_NAME, session=session):
         default_pool = Pool(
             pool=Pool.DEFAULT_POOL_NAME,
-            slots=conf.getint(section='core', 
key='non_pooled_task_slot_count', fallback=128),
+            slots=conf.getint(section='core', 
key='default_pool_task_slot_count', fallback=128),

Review comment:
       ```suggestion
               slots=conf.getint(section='core', 
key='default_pool_task_slot_count'),
   ```

##########
File path: UPDATING.md
##########
@@ -72,6 +72,16 @@ https://developers.google.com/style/inclusive-documentation
 
 -->
 
+### Default Task Pools Slots can be updated using ``[core] 
default_pool_task_slot_count``

Review comment:
       ```suggestion
   ### Default Task Pools Slots can be set using ``[core] 
default_pool_task_slot_count``
   ```
   
   I think this better reflects its behavior.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to