Thomas Ball

Results 2 issues of Thomas Ball

Consider this minimal example: WORKSPACE ```python load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "io_bazel_rules_kotlin", sha256 = "6cbd4e5768bdfae1598662e40272729ec9ece8b7bded8f0d2c81c8ff96dc139d", urls = ["https://github.com/bazelbuild/rules_kotlin/releases/download/v1.5.0-beta-4/rules_kotlin_release.tgz"], ) load("@io_bazel_rules_kotlin//kotlin:repositories.bzl", "kotlin_repositories") kotlin_repositories() load("@io_bazel_rules_kotlin//kotlin:core.bzl", "kt_register_toolchains") kt_register_toolchains() ``` BUILD.bazel ```python load("@io_bazel_rules_kotlin//kotlin:jvm.bzl", "kt_jvm_binary")...

status: open - investigating
P2
type: cleanup

Hi, I'm basically trying to get my bot to play as many games as the rate limiting allows. All I've seen in the docs is: > All requests are rate...