Pulumi code for my server setup
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix default propagation in bindOptions

+4 -1
+4 -1
lib/service/mounts.ts
··· 24 24 } 25 25 26 26 target ??= source; 27 - bindOptions = { propagation: "rshared", ...bindOptions }; 27 + bindOptions = output(bindOptions).apply((bindOptions) => ({ 28 + propagation: "rshared", 29 + ...bindOptions, 30 + })); 28 31 29 32 return { 30 33 source,