You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
src/main/java/com/google/devtools/build/lib/packages/StarlarkNativeModule.java
We have:
BazelStarlarkContext.from(thread).checkLoadingPhase("native.package_name"); in release-6.5.0 branch, but BazelStarlarkContext.checkLoadingPhase(thread, "native.package_name"); in master branch
BazelStarlarkContext.from(thread).checkLoadingPhase("native.repository_name"); in release-6.5.0 branch, but BazelStarlarkContext.checkLoadingPhase(thread, "native.repository_name"); in master branch
BazelStarlarkContext.from(thread).checkLoadingPhase("native.module_name"); in release-6.5.0 branch, but BazelStarlarkContext.checkLoadingPhase(thread, "native.module_name"); in the master.
BazelStarlarkContext.from(thread).checkLoadingPhase("native.module_version") in release-6.5.0 branch, but BazelStarlarkContext.checkLoadingPhase(thread, "native.module_version"); in the master.
If you want the changes from the release-6.5.0 branch, then I can continue with cherry-pick and create a PR. But if not then, I am unable to cherry-pick this one.
Forked from #16210
The text was updated successfully, but these errors were encountered: