We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba5d42e commit 52962faCopy full SHA for 52962fa
1 file changed
scripts/apply-hotfixes.sh
@@ -89,4 +89,15 @@ else
89
exit 1
90
fi;
91
92
+# Patching commit for bearer-token fallback in Configuration.auth_settings
93
+git cherry-pick -n 5621a4c2cf5cc278e8f45ce759ce44c057f1dbe2
94
+if [ $? -eq 0 ]
95
+then
96
+ echo Successfully patched changes for bearer-token fallback in Configuration.auth_settings
97
+else
98
+ echo Failed to patch changes for bearer-token fallback in Configuration.auth_settings
99
+ git restore --staged .
100
+ exit 1
101
+fi;
102
+
103
git commit -m "Apply hotfixes"
0 commit comments