Getting an error when trying to run a job: ```Erro...
# ask-community
k
Getting an error when trying to run a job:
Copy code
Error 1: Received unexpected config entry "multiprocess" at path root:execution:config.  Expected: "{ max_concurrent?: Int etc}"
Recently upgraded to latest dagster/dagit (1.1.19) I'm not sure where to go about debugging this error. The only thing I have for multiprocess related things is at the
@repository
level
Copy code
from dagster import repository, multiprocess_executor, with_resources

@repository(default_executor_def=multiprocess_executor)
def core_repo():
   return [*JOBS, *SCHEDULES, with_resources(ASSETS, RESOURCES)]
c
Hi Kyle, are you setting config in the launchpad or on the job? I think the config contains a "multiprocess" key when it should just contain the multiprocess executor config