Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MCBFF-44: Reimplement mod-patron's logic for placing external ECS TLR requests #50

Open
wants to merge 15 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge remote-tracking branch 'origin/master' into MCBFF-44
# Conflicts:
#	src/main/java/org/folio/circulationbff/service/impl/UserTenantsServiceImpl.java
OleksandrVidinieiev committed Jan 29, 2025
commit 1228061ee09a1c555517c90aec25d9afabf5548e
Original file line number Diff line number Diff line change
@@ -77,7 +77,8 @@ public UserTenant getFirstUserTenant() {
return null;
}
var firstUserTenant = userTenants.getUserTenants().get(0);
log.debug("getFirstUserTenant:: result: {}", firstUserTenant);
log.debug("getFirstUserTenant:: result: {}",
() -> firstUserTenant == null ? null : firstUserTenant.getId());
return firstUserTenant;
}
}
You are viewing a condensed version of this merge commit. You can view the full changes here.