Skip to content
This repository was archived by the owner on Mar 23, 2026. It is now read-only.

Commit bc73f29

Browse files
committed
define state container for resourcegroupstaggingapi
1 parent 124912b commit bc73f29

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

  • localstack-core/localstack/services/resourcegroupstaggingapi
Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
from abc import ABC
22

33
from localstack.aws.api.resourcegroupstaggingapi import ResourcegroupstaggingapiApi
4+
from localstack.state import StateVisitor
45

56

67
class ResourcegroupstaggingapiProvider(ResourcegroupstaggingapiApi, ABC):
7-
pass
8+
def accept_state_visitor(self, visitor: StateVisitor):
9+
# currently, Moto resourcegroupstaggingapi stores all tags into the other services backend, so their backend
10+
# does not hold any state and is not worth saving. It only holds direct references to other services
11+
# It only holds pagination tokens that are not worth keeping
12+
pass

0 commit comments

Comments
 (0)