Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CosmosDB 1.0 code change #6

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions state/azure/cosmosdb/cosmosdb.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ type CosmosItem struct {
const (
metadataPartitionKey = "partitionKey"
defaultTimeout = 20 * time.Second
statusNotFound = "NotFound"
)

// Policy that makes all queries cross-partition
Expand Down Expand Up @@ -228,8 +227,7 @@ func (c *StateStore) Get(ctx context.Context, req *state.GetRequest) (*state.Get
defer cancel()
readItem, err := c.client.ReadItem(readCtx, azcosmos.NewPartitionKeyString(partitionKey), req.Key, &options)
if err != nil {
var responseErr *azcore.ResponseError
if errors.As(err, &responseErr) && responseErr.ErrorCode == "NotFound" {
if isNotFoundError(err) {
return &state.GetResponse{}, nil
}
return nil, err
Expand Down Expand Up @@ -690,9 +688,10 @@ func isNotFoundError(err error) bool {
}

if requestError, ok := err.(*azcore.ResponseError); ok {
if requestError.ErrorCode == statusNotFound {
if requestError.StatusCode == 404 {
return true
}
// we previously checked the error code, but unfortunately this is not stable between API versions
}

return false
Expand Down
8 changes: 6 additions & 2 deletions state/azure/cosmosdb/cosmosdb_query.go
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@
opts.QueryParameters = append(opts.QueryParameters, q.query.parameters...)

if len(q.token) != 0 {
opts.ContinuationToken = q.token
opts.ContinuationToken = &q.token

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / Build darwin_amd64 binaries

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.http conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.http conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.cron conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.cron conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.influx conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.influx conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.mqtt3-emqx conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.mqtt3-emqx conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.kafka-confluent conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.kafka-confluent conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.kubemq conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.kubemq conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.kafka-wurstmeister conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.kafka-wurstmeister conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.mqtt3-mosquitto conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.mqtt3-mosquitto conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.mqtt3-vernemq conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.mqtt3-vernemq conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.postgresql.docker conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.postgresql.docker conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.redis.v7 conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.redis.v7 conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / configuration.postgresql.docker conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / configuration.postgresql.docker conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.redis.v6 conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.redis.v6 conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.rabbitmq conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.rabbitmq conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / crypto.jwks conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / crypto.jwks conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / configuration.redis.v6 conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / configuration.redis.v6 conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / configuration.redis.v7 conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / configuration.redis.v7 conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / crypto.localstorage conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / crypto.localstorage conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.in-memory conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.in-memory conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / lock.redis.v6 conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / lock.redis.v6 conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / lock.redis.v7 conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / lock.redis.v7 conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.jetstream conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.jetstream conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.kubemq conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.kubemq conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.kafka-wurstmeister conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.kafka-wurstmeister conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.mqtt3-emqx conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.mqtt3-emqx conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.mqtt3-vernemq conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.mqtt3-vernemq conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.kafka-confluent conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.kafka-confluent conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.redis.v6 conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.redis.v6 conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.rabbitmq conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.rabbitmq conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / secretstores.hashicorp.vault conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / secretstores.hashicorp.vault conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.pulsar conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.pulsar conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.solace conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.solace conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / secretstores.kubernetes conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / secretstores.kubernetes conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / secretstores.local.env conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / secretstores.local.env conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.in-memory conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.in-memory conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.etcd.v1 conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.etcd.v1 conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / secretstores.local.file conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / secretstores.local.file conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.cassandra conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.cassandra conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.etcd.v2 conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.etcd.v2 conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.cockroachdb.v1 conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.cockroachdb.v1 conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.memcached conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.memcached conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.mongodb conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.mongodb conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.mysql.mariadb conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.mysql.mariadb conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.mysql.mysql conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.mysql.mysql conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.postgresql.v1.docker conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.postgresql.v1.docker conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.redis.v6 conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.redis.v6 conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.postgresql.v2.docker conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.postgresql.v2.docker conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.redis.v7 conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.redis.v7 conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.sqlite conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.sqlite conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.oracledatabase conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.oracledatabase conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.rethinkdb conformance

cannot use &q.token (value of type *string) as string value in assignment

Check failure on line 264 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.rethinkdb conformance

cannot use &q.token (value of type *string) as string value in assignment
}

items := []CosmosItem{}
Expand All @@ -285,7 +285,11 @@
return nil, "", innerErr
}

token = queryResponse.ContinuationToken
if queryResponse.ContinuationToken == nil {

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / Build darwin_amd64 binaries

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.http conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.http conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.cron conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.cron conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.influx conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.influx conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.mqtt3-emqx conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.mqtt3-emqx conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.kafka-confluent conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.kafka-confluent conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.kubemq conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.kubemq conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.kafka-wurstmeister conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.kafka-wurstmeister conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.mqtt3-mosquitto conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.mqtt3-mosquitto conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.mqtt3-vernemq conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.mqtt3-vernemq conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.postgresql.docker conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.postgresql.docker conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.redis.v7 conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.redis.v7 conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / configuration.postgresql.docker conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / configuration.postgresql.docker conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.redis.v6 conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.redis.v6 conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.rabbitmq conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.rabbitmq conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / crypto.jwks conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / crypto.jwks conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / configuration.redis.v6 conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / configuration.redis.v6 conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / configuration.redis.v7 conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / configuration.redis.v7 conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / crypto.localstorage conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / crypto.localstorage conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.in-memory conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.in-memory conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / lock.redis.v6 conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / lock.redis.v6 conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / lock.redis.v7 conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / lock.redis.v7 conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.jetstream conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.jetstream conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.kubemq conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.kubemq conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.kafka-wurstmeister conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.kafka-wurstmeister conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.mqtt3-emqx conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.mqtt3-emqx conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.mqtt3-vernemq conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.mqtt3-vernemq conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.kafka-confluent conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.kafka-confluent conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.redis.v6 conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.redis.v6 conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.rabbitmq conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.rabbitmq conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / secretstores.hashicorp.vault conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / secretstores.hashicorp.vault conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.pulsar conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.pulsar conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.solace conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.solace conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / secretstores.kubernetes conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / secretstores.kubernetes conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / secretstores.local.env conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / secretstores.local.env conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.in-memory conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.in-memory conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.etcd.v1 conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.etcd.v1 conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / secretstores.local.file conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / secretstores.local.file conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.cassandra conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.cassandra conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.etcd.v2 conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.etcd.v2 conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.cockroachdb.v1 conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.cockroachdb.v1 conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.memcached conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.memcached conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.mongodb conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.mongodb conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.mysql.mariadb conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.mysql.mariadb conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.mysql.mysql conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.mysql.mysql conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.postgresql.v1.docker conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.postgresql.v1.docker conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.redis.v6 conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.redis.v6 conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.postgresql.v2.docker conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.postgresql.v2.docker conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.redis.v7 conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.redis.v7 conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.sqlite conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.sqlite conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.oracledatabase conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.oracledatabase conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.rethinkdb conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)

Check failure on line 288 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.rethinkdb conformance

invalid operation: queryResponse.ContinuationToken == nil (mismatched types string and untyped nil)
token = ""
} else {
token = *queryResponse.ContinuationToken

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / Build darwin_amd64 binaries

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.http conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.http conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.cron conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.cron conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.influx conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.influx conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.mqtt3-emqx conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.mqtt3-emqx conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.kafka-confluent conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.kafka-confluent conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.kubemq conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.kubemq conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.kafka-wurstmeister conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.kafka-wurstmeister conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.mqtt3-mosquitto conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.mqtt3-mosquitto conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.mqtt3-vernemq conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.mqtt3-vernemq conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.postgresql.docker conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.postgresql.docker conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.redis.v7 conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.redis.v7 conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / configuration.postgresql.docker conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / configuration.postgresql.docker conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.redis.v6 conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.redis.v6 conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.rabbitmq conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / bindings.rabbitmq conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / crypto.jwks conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / crypto.jwks conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / configuration.redis.v6 conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / configuration.redis.v6 conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / configuration.redis.v7 conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / configuration.redis.v7 conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / crypto.localstorage conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / crypto.localstorage conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.in-memory conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.in-memory conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / lock.redis.v6 conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / lock.redis.v6 conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / lock.redis.v7 conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / lock.redis.v7 conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.jetstream conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.jetstream conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.kubemq conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.kubemq conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.kafka-wurstmeister conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.kafka-wurstmeister conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.mqtt3-emqx conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.mqtt3-emqx conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.mqtt3-vernemq conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.mqtt3-vernemq conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.kafka-confluent conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.kafka-confluent conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.redis.v6 conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.redis.v6 conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.rabbitmq conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.rabbitmq conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / secretstores.hashicorp.vault conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / secretstores.hashicorp.vault conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.pulsar conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.pulsar conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.solace conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / pubsub.solace conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / secretstores.kubernetes conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / secretstores.kubernetes conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / secretstores.local.env conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / secretstores.local.env conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.in-memory conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.in-memory conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.etcd.v1 conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.etcd.v1 conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / secretstores.local.file conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / secretstores.local.file conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.cassandra conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.cassandra conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.etcd.v2 conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.etcd.v2 conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.cockroachdb.v1 conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.cockroachdb.v1 conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.memcached conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.memcached conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.mongodb conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.mongodb conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.mysql.mariadb conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.mysql.mariadb conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.mysql.mysql conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.mysql.mysql conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.postgresql.v1.docker conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.postgresql.v1.docker conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.redis.v6 conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.redis.v6 conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.postgresql.v2.docker conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.postgresql.v2.docker conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.redis.v7 conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.redis.v7 conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.sqlite conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.sqlite conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.oracledatabase conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.oracledatabase conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.rethinkdb conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)

Check failure on line 291 in state/azure/cosmosdb/cosmosdb_query.go

View workflow job for this annotation

GitHub Actions / state.rethinkdb conformance

invalid operation: cannot indirect queryResponse.ContinuationToken (variable of type string)
}
for _, item := range queryResponse.Items {
tempItem := CosmosItem{}
err := json.Unmarshal(item, &tempItem)
Expand Down
12 changes: 8 additions & 4 deletions tests/certification/state/azure/cosmosdb/cosmosdb_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -133,13 +133,17 @@ func TestAzureCosmosDBStorage(t *testing.T) {
"partitionKey": "mypartition",
}

test := func(setMeta, getMeta map[string]string, expectedValue string) {
test := func(setMeta, getMeta map[string]string, expectedValue string, expectedErr bool) {
// save state, default options: strong, last-write
err = client.SaveState(ctx, statestore, stateKey, []byte(stateValue), setMeta)
require.NoError(t, err)

// get state
item, err := client.GetState(ctx, statestore, stateKey, getMeta)
if expectedErr {
require.Error(t, err)
return
}
require.NoError(t, err)
assert.Equal(t, expectedValue, string(item.Value))

Expand All @@ -149,13 +153,13 @@ func TestAzureCosmosDBStorage(t *testing.T) {
}

// Test with no partition key
test(nil, meta1, stateValue)
test(nil, meta1, stateValue, false)

// Test with specific partition key
test(meta2, meta2, stateValue)
test(meta2, meta2, stateValue, false)

// Test with incorrect partition key
test(meta2, meta1, "")
test(meta2, meta1, "", true)

return nil
}
Expand Down
Loading