Fixed
Status Update
Comments
ng...@gmail.com <ng...@gmail.com> #2
Heres the other logs if the previous log isnt detailed
fl...@google.com <fl...@google.com>
yb...@google.com <yb...@google.com> #3
Im trying to open the page again using my other project (cgdx-1132485) using Microsoft Edge Version 127.0.2651.98 (Official build) (64-bit) with Windows 11 23H2 Build 22631.3880.
But maybe this helps (Edit: even though if the error said 'Too Many Request', im just opening it normally without reopen the page many times)
VM1948 m=hfcr:34
POSThttps://accounts.google.com/RotateCookies 429 (Too Many Requests)
db @ VM1948 m=hfcr:34
fb @ VM1948 m=hfcr:35
(anonymous) @ VM1948 m=hfcr:33
setTimeout
(anonymous) @ VM1948 m=hfcr:33
$a @ VM1948 m=hfcr:33
e @ VM1948 m=hfcr:32
(anonymous) @ VM1948 m=hfcr:32
setTimeout
Xa.start @ VM1948 m=hfcr:32
gb @ VM1948 m=hfcr:36
(anonymous) @ VM1949 RotateCookiesPage:1
But maybe this helps (Edit: even though if the error said 'Too Many Request', im just opening it normally without reopen the page many times)
VM1948 m=hfcr:34
POST
db @ VM1948 m=hfcr:34
fb @ VM1948 m=hfcr:35
(anonymous) @ VM1948 m=hfcr:33
setTimeout
(anonymous) @ VM1948 m=hfcr:33
$a @ VM1948 m=hfcr:33
e @ VM1948 m=hfcr:32
(anonymous) @ VM1948 m=hfcr:32
setTimeout
Xa.start @ VM1948 m=hfcr:32
gb @ VM1948 m=hfcr:36
(anonymous) @ VM1949 RotateCookiesPage:1
th...@gmail.com <th...@gmail.com> #4
I Had same issue with my Laravel project that work in IDX Project. Im using IDX Laravel Template for this
fl...@google.com <fl...@google.com> #5
It seems that everyone is struggling with this issue? (Because I see the viewer count at 60+) I hope that this issue can be fixed ASAP
ng...@gmail.com <ng...@gmail.com> #6
i'm also experiencing this issue for about a week now in one of my workspace
ap...@google.com <ap...@google.com> #7
Automated by Blunderbuss job monospace-web-ide-autoassigner for config bug_blunderbuss_config for component 1379083.
fl...@google.com <fl...@google.com> #8
Same issue for since morning. Been trying to get access this whole time but to no avail.
da...@google.com <da...@google.com> #9
Sorry for the disruption! We should have service restored in Asia as of now. Still waiting for the fix to make it to additional regions.
Description
Version used: 2.1.0-alpha01
Devices/Android versions reproduced on: Nexus 5 (Android 6.0.1) and Emulator (Android 8)
Android Studio 3.3 Canary 13
I create this DAO
import androidx.room.*
import dominando.android.data_room.entity.Book
import io.reactivex.Completable
import io.reactivex.Flowable
import io.reactivex.Maybe
@Dao
interface BookDao {
@Insert(onConflict = OnConflictStrategy.REPLACE)
fun save(book: Book): Completable
@Delete
fun delete(vararg book: Book): Completable
@Query("SELECT * FROM Book WHERE title LIKE :title ORDER BY title")
fun bookByTitle(title: String = "%"): Flowable<List<Book>>
@Query("SELECT * FROM Book WHERE id = :id")
fun bookById(id: String): Maybe<Book>
}
But compilation fails with this error.
error: local variable book is accessed from within inner class; needs to be declared final
When I look to the generated code, this is it.
@Override
public Completable save(Book book) {
return Completable.fromCallable(new Callable() {
@Override
public Void call() throws Exception {
__db.beginTransaction();
try {
__insertionAdapterOfBook.insert(book);
__db.setTransactionSuccessful();
return null;
} finally {
__db.endTransaction();
}
}
});
}
As you can see, book parameter is not marked as final and cannot be accessed inside of Completable.fromCallable.