Jiakuan Li
Jiakuan Li
seems like adding the following code to `types.rs` will solve this problem.... Haven't try it out. ```rust impl ToAvro for Vec { fn avro(self) -> Value { Value::Bytes(self) } }...
> seems like adding the following code to `types.rs` will solve this problem.... Haven't try it out. > > ```rust > impl ToAvro for Vec { > fn avro(self) ->...
What I've done is: ### Schema ```json { "type": "record", "name": "test", "fileds": [ { "name": "item", "type": "bytes" } ] } ``` ### struct ```rust pub struct Test {...
I have tried `KAFKA_CFG_BROKER_ID` but still, get the same warnings.
> Hi, Sorry, I have just updated the contributing guidelines because there was a note missing regarding splitting a PR if the changes affect several containers. Do you mind splitting...
@carrodher can you help to check why VIB Verify for 3.2 and 3.3 failed?
@YeungKC can you help to review this one?
The story is I was building a Japanese learning app, and I was thinking having a feature of toggle on/off ruby would be nice. Just like the feature that NHK...
Did you get the pipes working? I have the same issue on non_enclave here but have no idea how to fix it. The error is saying "Not a directory".
```dart return GameAuth.isSignedIn.then((isSignedIn) { logger.fine('User is signed in: $isSignedIn'); if (isSignedIn) { return Leaderboards.loadLeaderboardScores( iOSLeaderboardID: iosLeaderboardID, scope: PlayerScope.global, timeScope: TimeScope.allTime, maxResults: 10); } else { logger.fine('User is not signed in....