@@ -154,7 +154,12 @@ pub async fn create(
154
154
Ok ( ( ) )
155
155
}
156
156
157
- pub fn activate ( store : Arc < SubgraphStore > , deployment : String , shard : String ) -> Result < ( ) , Error > {
157
+ pub fn activate (
158
+ pools : & HashMap < Shard , ConnectionPool > ,
159
+ store : Arc < SubgraphStore > ,
160
+ deployment : String ,
161
+ shard : String ,
162
+ ) -> Result < ( ) , Error > {
158
163
let shard = Shard :: new ( shard) ?;
159
164
let deployment =
160
165
DeploymentHash :: new ( deployment) . map_err ( |s| anyhow ! ( "illegal deployment hash `{}`" , s) ) ?;
@@ -167,8 +172,23 @@ pub fn activate(store: Arc<SubgraphStore>, deployment: String, shard: String) ->
167
172
shard
168
173
)
169
174
} ) ?;
170
- store. activate ( & deployment) ?;
171
- println ! ( "activated copy {}" , deployment) ;
175
+
176
+ let ( state, _, _) = match CopyState :: find ( pools, & shard, deployment. id . 0 ) ? {
177
+ Some ( ( state, tables, on_sync) ) => ( state, tables, on_sync) ,
178
+ None => {
179
+ println ! (
180
+ "copying is queued but has not started or no copy operation for {} exists" ,
181
+ deployment. id. 0
182
+ ) ;
183
+ return Ok ( ( ) ) ;
184
+ }
185
+ } ;
186
+ if state. finished_at . is_some ( ) {
187
+ store. activate ( & deployment) ?;
188
+ println ! ( "activated copy {}" , deployment) ;
189
+ } else {
190
+ println ! ( "copying is not finished yet" ) ;
191
+ }
172
192
Ok ( ( ) )
173
193
}
174
194
0 commit comments