Skip to content

Commit

Permalink
set provider as writable even though this doesn’t seem to cause an error
Browse files Browse the repository at this point in the history
  • Loading branch information
matt2e committed Apr 28, 2024
1 parent a828ca2 commit d2dc871
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion go-runtime/modulecontext/from_proto.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ func FromProto(ctx context.Context, response *ftlv1.ModuleContextResponse) (*Mod
}

func newInMemoryConfigManager[R cf.Role](ctx context.Context, config map[string][]byte) (*cf.Manager[R], error) {
provider := cf.InlineProvider[R]{}
provider := cf.InlineProvider[R]{
Inline: true,
}
refs := map[cf.Ref]*url.URL{}
for name, data := range config {
ref := cf.Ref{Name: name}
Expand Down

0 comments on commit d2dc871

Please sign in to comment.