Skip to content

Commit 32ccbec

Browse files
authored
Merge branch 'main' into davidmotson.ai_monitoring
2 parents 2339f7b + 1cf65b9 commit 32ccbec

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

ci/fireci/fireciplugins/api_information.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ def api_information(auth_token, repo_name, issue_number):
3737
with open(os.path.join(dir_suffix, filename), 'r') as f:
3838
outputlines = f.readlines()
3939
for line in outputlines:
40-
if 'error' in line:
40+
if 'error:' in line:
4141
formatted_output_lines.append(line[line.find('error:'):])
42-
elif 'warning' in line:
42+
elif 'warning:' in line:
4343
formatted_output_lines.append(line[line.find('warning:'):])
4444

4545
if formatted_output_lines:

firebase-functions/src/androidTest/java/com/google/firebase/functions/StreamTests.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,14 +128,14 @@ class StreamTests {
128128
fun genStreamError_receivesError() = runBlocking {
129129
val input = mapOf("data" to "test error")
130130
val function =
131-
functions.getHttpsCallable("genStreamError").withTimeout(2000, TimeUnit.MILLISECONDS)
131+
functions.getHttpsCallable("genStreamError").withTimeout(10_000, TimeUnit.MILLISECONDS)
132132
val subscriber = StreamSubscriber()
133133

134134
function.stream(input).subscribe(subscriber)
135135

136-
withTimeout(2000) {
136+
withTimeout(10_000) {
137137
while (subscriber.throwable == null) {
138-
delay(100)
138+
delay(1_000)
139139
}
140140
}
141141

0 commit comments

Comments
 (0)