Skip to content

Commit

Permalink
Fix env variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
JakubFrejlach committed Jan 13, 2025
1 parent 72e0538 commit 099b54a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions osidb_bindings/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,7 @@
package="osidb_bindings",
)

MAX_CONCURRENCY = get_env(
"COMPONENT_REGISTRY_BINDINGS_MAX_CONCURRENCY", "10", is_int=True
)
MAX_CONCURRENCY = get_env("OSIDB_BINDINGS_MAX_CONCURRENCY", "10", is_int=True)


def file_trackers(self, form_data: Dict[str, Any], *args, **kwargs):
Expand Down

0 comments on commit 099b54a

Please sign in to comment.