Skip to content

Commit

Permalink
Remove transformer image from input
Browse files Browse the repository at this point in the history
  • Loading branch information
KyungEon Choi committed Apr 19, 2022
1 parent 942bb20 commit 65a16df
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion servicex_databinder/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from .servicex_databinder import DataBinder

__version__ = '0.2.4'
__version__ = '0.2.5'

logging.basicConfig(format="%(levelname)s - %(message)s")
logging.getLogger(__name__).setLevel(logging.INFO)
3 changes: 2 additions & 1 deletion servicex_databinder/frontend.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ def get_servicex_data(self, test_run=False):
async def bound_get_data(sem, sx_ds, query):
async with sem:
return await sx_ds.get_data_parquet_async(query)
# return await sx_ds.get_data_parquet_async(query, 'test') # When fix in ServiceX Frontend

async def _get_my_data():
sem = asyncio.Semaphore(50) # Limit maximum concurrent ServiceX requests
Expand All @@ -55,7 +56,7 @@ async def _get_my_data():
for request in self._servicex_requests:
sx_ds = ServiceXDataset(dataset=request['dataset'], \
backend_name=self._config['General']['ServiceXBackendName'], \
image=transformer_image, \
# image=transformer_image, \
session_generator=session, \
ignore_cache=ignoreCache)
query = request['query']
Expand Down

0 comments on commit 65a16df

Please sign in to comment.