We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e7539a commit bcf52afCopy full SHA for bcf52af
src/murfey/server/api/__init__.py
@@ -1759,9 +1759,9 @@ def failed_client_post(instrument_name: str, post_info: PostInfo):
1759
async def find_upstream_visits(session_id: MurfeySessionID, db=murfey_db):
1760
murfey_session = db.exec(select(Session).where(Session.id == session_id)).one()
1761
visit_name = murfey_session.visit
1762
- instrument_server = murfey_session.instrument_server
1763
- machine_config = get_machine_config(instrument_server=instrument_server)[
1764
- instrument_server
+ instrument_name = murfey_session.instrument_name
+ machine_config = get_machine_config(instrument_name=instrument_name)[
+ instrument_name
1765
]
1766
upstream_visits = {}
1767
# Iterates through provided upstream directories
0 commit comments